| commit | 2b84a4500460d1f3848e54b47169bdf8c504dded | [log] [tgz] |
|---|---|---|
| author | Moritz <mosum@google.com> | Tue Dec 17 13:50:38 2024 +0100 |
| committer | GitHub <noreply@github.com> | Tue Dec 17 13:50:38 2024 +0100 |
| tree | b03e732b0f218d1bd4a1bfa86ba121c54ff619ca | |
| parent | f6a748819139b8cbf513d5fc36b10676b0cb066f [diff] |
Update README.md before archiving (#76)
[!IMPORTANT]
This repo has moved to https://github.com/dart-lang/http/tree/master/pkgs/http_multi_server
An implementation of dart:io‘s HttpServer that wraps multiple servers and forwards methods to all of them. It’s useful for serving the same application on multiple network interfaces while still having a unified way of controlling the servers. In particular, it supports serving on both the IPv4 and IPv6 loopback addresses using HttpMultiServer.loopback.
import 'package:http_multi_server/http_multi_server.dart'; import 'package:shelf/shelf.dart' as shelf; import 'package:shelf/shelf_io.dart' as shelf_io; void main() async { // Both http://127.0.0.1:8080 and http://[::1]:8080 will be bound to the same // server. var server = await HttpMultiServer.loopback(8080); shelf_io.serveRequests(server, (request) { return shelf.Response.ok("Hello, world!"); }); }