summaryrefslogtreecommitdiff
path: root/cli/bench/node_http.js
diff options
context:
space:
mode:
authorDivy Srivastava <dj.srivastava23@gmail.com>2022-06-08 17:33:38 +0530
committerGitHub <noreply@github.com>2022-06-08 17:33:38 +0530
commit4305bb4bd8ec3747031ee92baa8e55d50d22b47c (patch)
tree0bd15f3e8082c7865f246696ec8ce644172ab129 /cli/bench/node_http.js
parent8113fac939c06b0d71a22d008c060bed3cb47d72 (diff)
chore(bench): generalized HTTP benchmarks framework (#14815)
Diffstat (limited to 'cli/bench/node_http.js')
-rw-r--r--cli/bench/node_http.js9
1 files changed, 0 insertions, 9 deletions
diff --git a/cli/bench/node_http.js b/cli/bench/node_http.js
deleted file mode 100644
index 3380c86a5..000000000
--- a/cli/bench/node_http.js
+++ /dev/null
@@ -1,9 +0,0 @@
-// 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);