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