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