Clone this repo:
  1. 2b84a45 Update README.md before archiving (#76) by Moritz · 5 weeks ago master
  2. f6a7488 Bump dart-lang/setup-dart in the github-actions group (#75) by dependabot[bot] · 7 weeks ago
  3. c8aabe3 Bump actions/checkout from 4.2.0 to 4.2.2 in the github-actions group (#74) by dependabot[bot] · 3 months ago
  4. a9e71fa blast_repo fixes (#73) by Kevin Moore · 3 months ago
  5. e7515b5 Bump actions/checkout from 4.1.7 to 4.2.0 in the github-actions group (#72) by dependabot[bot] · 4 months ago

[!IMPORTANT]
This repo has moved to https://github.com/dart-lang/http/tree/master/pkgs/http_multi_server

Dart CI pub package package publisher

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!");
  });
}