srvx
Universal Server API

Based on web platform standards and works seamlessly with Deno, Bun and Node.js.
server.mjs
import { serve } from "srvx";

serve({
  port: 3000,
  fetch(request) {
    return new Response("👋 Hello there!");
  },
});