diff options
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); |