1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
const server = Bun.serve({ port: 0, async fetch(req) { console.log(await req.json()); return new Response(); }, }); console.log( JSON.stringify({ hostname: server.hostname, port: server.port, }), ); (async function () { for await (let line of console) { if (line === "--CLOSE--") { process.exit(0); } } })();