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/node_tcp.js | |
parent | 8113fac939c06b0d71a22d008c060bed3cb47d72 (diff) |
chore(bench): generalized HTTP benchmarks framework (#14815)
Diffstat (limited to 'cli/bench/node_tcp.js')
-rw-r--r-- | cli/bench/node_tcp.js | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/cli/bench/node_tcp.js b/cli/bench/node_tcp.js deleted file mode 100644 index cb51a63a5..000000000 --- a/cli/bench/node_tcp.js +++ /dev/null @@ -1,18 +0,0 @@ -// 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); |