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/node_http.js | |
parent | 8113fac939c06b0d71a22d008c060bed3cb47d72 (diff) |
chore(bench): generalized HTTP benchmarks framework (#14815)
Diffstat (limited to 'cli/bench/http/node_http.js')
-rw-r--r-- | cli/bench/http/node_http.js | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/cli/bench/http/node_http.js b/cli/bench/http/node_http.js new file mode 100644 index 000000000..3380c86a5 --- /dev/null +++ b/cli/bench/http/node_http.js @@ -0,0 +1,9 @@ +// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license. +const http = require("http"); +const port = process.argv[2] || "4544"; +console.log("port", port); +http + .Server((req, res) => { + res.end("Hello World"); + }) + .listen(port); |