diff options
author | Divy Srivastava <dj.srivastava23@gmail.com> | 2022-06-08 17:33:38 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-08 17:33:38 +0530 |
commit | 4305bb4bd8ec3747031ee92baa8e55d50d22b47c (patch) | |
tree | 0bd15f3e8082c7865f246696ec8ce644172ab129 /cli/bench/http/deno_http_native_headers.js | |
parent | 8113fac939c06b0d71a22d008c060bed3cb47d72 (diff) |
chore(bench): generalized HTTP benchmarks framework (#14815)
Diffstat (limited to 'cli/bench/http/deno_http_native_headers.js')
-rw-r--r-- | cli/bench/http/deno_http_native_headers.js | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/cli/bench/http/deno_http_native_headers.js b/cli/bench/http/deno_http_native_headers.js new file mode 100644 index 000000000..23ef1e060 --- /dev/null +++ b/cli/bench/http/deno_http_native_headers.js @@ -0,0 +1,22 @@ +const addr = Deno.args[0] || "127.0.0.1:4500"; +const [hostname, port] = addr.split(":"); +const listener = Deno.listen({ hostname, port: Number(port) }); +console.log("Server listening on", addr); + +for await (const conn of listener) { + (async () => { + const requests = Deno.serveHttp(conn); + for await (const { respondWith } of requests) { + respondWith( + new Response("Hello World", { + status: 200, + headers: { + server: "deno", + "content-type": "text/plain", + }, + }), + ) + .catch((e) => console.log(e)); + } + })(); +} |