lph-11/odin-http/comparisons/empty-ok-all/bun/index.ts
2025-03-13 18:14:21 +13:00

8 lines
152 B
TypeScript

const server = Bun.serve({
port: 8080,
fetch(req) {
return new Response();
},
});
console.log(`Listening on http://localhost:${server.port}...`);