1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-21 15:04:11 -05:00
denoland-deno/tests/testdata/run/error_for_await.ts
Asher Gomez 7937ae3f2f
chore(net): soft-remove Deno.serveHttp() (#25451)
Towards #22079

---------

Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
2024-09-06 08:15:00 +10:00

12 lines
304 B
TypeScript

const listener = Deno.listen({ port: 8080 });
for await (const conn of listener) {
handleConn(conn);
}
function handleConn(conn: Deno.Conn) {
const httpConn = (Deno as any).serveHttp(conn);
for await (const event of httpConn) {
event.respondWith(new Response("html", { status: 200 }));
}
}