diff options
Diffstat (limited to 'tools/node_tcp.js')
-rw-r--r-- | tools/node_tcp.js | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/tools/node_tcp.js b/tools/node_tcp.js new file mode 100644 index 000000000..d4ed6db40 --- /dev/null +++ b/tools/node_tcp.js @@ -0,0 +1,18 @@ +// Copyright 2018 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); |