http_server icon indicating copy to clipboard operation
http_server copied to clipboard

Utility classes for HTTP server

Results 21 http_server issues
Sort by recently updated
recently updated
newest added

Hello! Just to let you know, 0.9.7 is unusable if you neither provide examples or a working [documentation](http://www.dartdocs.org/documentation/http_server/0.9.7/) (raises a 404, please fix this)

There is no documentation in the README or the wiki on how to actually use this package.

In http_body_impl.dart class HttpBodyHandlerImpl method process, the following code only retrieves the last key value pair: ``` Future asFormData() { return stream .transform(new MimeMultipartTransformer( contentType.parameters['boundary'])) .map((part) => HttpMultipartFormData.parse( part, defaultEncoding:...

Can [test/http_mock.dart](https://github.com/dart-lang/http_server/blob/master/test/http_mock.dart) be moved to lib directory, so that it can be used in other packages to mock test its api.

I discovered that my server wasn't respecting `autoCompress = true` because this `http_server` package adds its own `content-length` headers. See what @sgjesse said here: https://github.com/dart-lang/sdk/issues/23350#issuecomment-108464543 Can we add support? I...

bug

**Issue by [giote73](https://github.com/giote73)** _Originally opened as dart-lang/sdk#17722_ --- **Attachment:** [myDartSrv.log](https://storage.googleapis.com/google-code-attachments/dart/issue-17722/comment-0/myDartSrv.log) (3.38 KB)

bug

_Originally opened as dart-lang/sdk#16924_ _This issue was originally filed by diego.rocha.c...@gmail.com_ --- VirtualDirectory.serveFile of http_server library should return a Future that completes when the file has been successfully served. It...

enhancement

_Originally opened as dart-lang/sdk#16616_ _This issue was originally filed by mcam...@google.com_ --- https://api.dartlang.org/apidocs/channels/stable/#http_server/http_server virtualServer should be virtualHost in the code sample also requets -> requests

Area-Library
Type-Documentation
Docs-API

**Issue by [sethladd](https://github.com/sethladd)** _Originally opened as dart-lang/sdk#15765_ --- It would be really nice to easily set the directory index file for http_server. Currently we have to do this:   staticFiles.directoryHandler =...

enhancement

**Issue by [sethladd](https://github.com/sethladd)** _Originally opened as dart-lang/sdk#15661_ --- I'm using the http_server package. I'd like to do the following: if index.html exists, serve that if not, serve generated directory listing...

enhancement