summaryrefslogtreecommitdiff
path: root/cli/bench/http/node_http.js
diff options
context:
space:
mode:
Diffstat (limited to 'cli/bench/http/node_http.js')
-rw-r--r--cli/bench/http/node_http.js9
1 files changed, 0 insertions, 9 deletions
diff --git a/cli/bench/http/node_http.js b/cli/bench/http/node_http.js
deleted file mode 100644
index 3c0d9c41c..000000000
--- a/cli/bench/http/node_http.js
+++ /dev/null
@@ -1,9 +0,0 @@
-// Copyright 2018-2023 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);