summaryrefslogtreecommitdiff
path: root/cli/bench/http/node_tcp.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/http/node_tcp.js
parent8113fac939c06b0d71a22d008c060bed3cb47d72 (diff)
chore(bench): generalized HTTP benchmarks framework (#14815)
Diffstat (limited to 'cli/bench/http/node_tcp.js')
-rw-r--r--cli/bench/http/node_tcp.js18
1 files changed, 18 insertions, 0 deletions
diff --git a/cli/bench/http/node_tcp.js b/cli/bench/http/node_tcp.js
new file mode 100644
index 000000000..cb51a63a5
--- /dev/null
+++ b/cli/bench/http/node_tcp.js
@@ -0,0 +1,18 @@
+// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Note: this is a keep-alive server.
+const { Server } = require("net");
+const port = process.argv[2] || "4544";
+console.log("port", port);
+
+const response = Buffer.from(
+ "HTTP/1.1 200 OK\r\nContent-Length: 12\r\n\r\nHello World\n",
+);
+
+Server((socket) => {
+ socket.on("data", (_) => {
+ socket.write(response);
+ });
+ socket.on("error", (_) => {
+ socket.destroy();
+ });
+}).listen(port);