2023-01-02 16:00:42 -05:00
|
|
|
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
|
2018-10-23 18:02:30 -04:00
|
|
|
// 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(
|
2020-07-14 15:24:17 -04:00
|
|
|
"HTTP/1.1 200 OK\r\nContent-Length: 12\r\n\r\nHello World\n",
|
2018-10-23 18:02:30 -04:00
|
|
|
);
|
|
|
|
|
2020-03-28 13:03:49 -04:00
|
|
|
Server((socket) => {
|
|
|
|
socket.on("data", (_) => {
|
2018-10-23 18:02:30 -04:00
|
|
|
socket.write(response);
|
|
|
|
});
|
2020-03-28 13:03:49 -04:00
|
|
|
socket.on("error", (_) => {
|
2018-10-23 18:02:30 -04:00
|
|
|
socket.destroy();
|
|
|
|
});
|
|
|
|
}).listen(port);
|