Extension library for Shelf to supports unix domain socket.
You can listen your handler on a unix domain socket.
dart pub add shelf_unix_domain_socketvar server = await File('/tmp/server.sock').bindHttpServer();
shelf_io.serveRequests(server, handler);You can use only on Linux/macOS.