1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-25 15:29:32 -05:00
denoland-deno/tests/specs/serve/conn_info/main.ts
2024-09-12 23:32:28 +00:00

19 lines
394 B
TypeScript

(async () => {
for (let i = 0; i < 1000; i++) {
try {
const resp = await fetch("http://localhost:12468/");
Deno.exit(0);
} catch {
await new Promise((r) => setTimeout(r, 10));
}
}
Deno.exit(2);
})();
export default {
fetch(request, connInfo) {
console.log(connInfo);
return new Response("Hello world!");
},
} satisfies Deno.ServeDefaultExport;