lph-11/odin-http/comparisons/empty-ok-all/bun/index.ts

9 lines
152 B
TypeScript
Raw Permalink Normal View History

2025-03-13 18:14:21 +13:00
const server = Bun.serve({
port: 8080,
fetch(req) {
return new Response();
},
});
console.log(`Listening on http://localhost:${server.port}...`);