blob: 6a3b49b56aa85f67ecc67a438fbe1769d7ea2012 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
const listener = Deno.listen({ hostname: "127.0.0.1", port: 4500 });
postMessage("ready");
for await (const conn of listener) {
(async () => {
const requests = Deno.serveHttp(conn);
for await (const { respondWith } of requests) {
respondWith(new Response("Hello world"));
}
})();
}
|