Clone this repo:
  1. 8348be1 Bump the github-actions group with 2 updates (#71) by dependabot[bot] · 10 days ago master
  2. 25941e2 Bump actions/checkout from 4.1.5 to 4.1.6 in the github-actions group (#70) by dependabot[bot] · 6 weeks ago
  3. 4a791af Bump actions/checkout from 4.1.4 to 4.1.5 in the github-actions group (#69) by dependabot[bot] · 9 weeks ago
  4. ff49aed blast_repo fixes (#68) by Devon Carew · 9 weeks ago
  5. e45a674 Bump actions/checkout from 4.1.2 to 4.1.4 (#66) by dependabot[bot] · 2 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!");
  });
}