Clone this repo:
  1. 5efaa07 Bump dart-lang/setup-dart from 1.5.0 to 1.5.1 (#58) by dependabot[bot] · 18 hours ago master
  2. 9d62ea3 Bump actions/checkout from 3.5.3 to 3.6.0 (#57) by dependabot[bot] · 4 weeks ago
  3. aa128cf Bump actions/checkout from 3.5.2 to 3.5.3 (#56) by dependabot[bot] · 3 months ago
  4. a209cd5 blast_repo fixes (#55) by Devon Carew · 5 months ago
  5. d1fffed Bump actions/checkout from 3.5.0 to 3.5.2 (#54) by dependabot[bot] · 5 months ago

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