summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/workers/http_worker.js
blob: 34603ed562b17e2e436c28120b5c0ce8a059411d (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: 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"));
    }
  })();
}