blob: 43ad5e12cceab2b9fe9907dfd39837aad4530de0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
const listener = Deno.listen({ hostname: "127.0.0.1", port: 4506 });
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"));
}
})();
}
|