(req)
| 3 | const server = Bun.serve({ |
| 4 | port: 3000, |
| 5 | fetch(req) { |
| 6 | const body = figlet.textSync("Bun!"); |
| 7 | return new Response(body); |
| 8 | }, |
| 9 | }); |
| 10 | |
| 11 | console.log(`Listening on http://localhost:${server.port} ...`); |
no outgoing calls
no test coverage detected