srvx
Universal Server API
Based on web platform standards and works seamlessly with Deno, Bun and Node.js and more.
import { serve } from "srvx";
serve({
port: 3000,
fetch(request) {
return new Response("👋 Hello there!");
},
});