blob: ce8571df1a23854b44cb196625fb3728a9b6ada2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
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 }));
}
}
|