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

Hi, this library really makes writing an http server a lot easier. However, when defining a path, it does not work properly. Code to reproduce: ```dart import 'dart:io'; import 'package:http_server/http_server.dart';...

Hi after I change route on my app can we dispose or close the server? Or is this automatically handled?

The user suddenly stopped downloading the large file while downloading the large file, but the server is still reading the large file and did not cancel the request. The CUP,...

https://github.com/dart-lang/http_server/blob/master/test/virtual_directory_test.dart They munge URLs using the Uri class. It seems that creating `http://localhost:8080/test/../..` normalizes to `http://localhost:8080`

An exemple application on Flutter should be nice, like the other flutter's packages ... Thank you

Here is my code: HttpServer.bind(InternetAddress.anyIPv4, port).then((server) { print('Servindo em ${server.address}:${server.port}'); server.listen((HttpRequest request) { handleGetRequest(request); // check de URL request.response ..close(); }); }); I don't know why, but some times, the...

The server will read uploaded files into RAM. A upload file size limit is needed and/or a temporary directory where uploaded files can be stored.

I'm trying to send multiple files to the server but the server only gets one. ```dart // Client FormData formData = FormData(); for (var i = 0; i < files.length;...

This package depends on dart:io, if I am not mistaken, and cannot work when run on browsers. But testing it using "pub run test" tries to run its unit tests...