summaryrefslogtreecommitdiff
path: root/tools/node_http.js
blob: dbe9de81af5da3baa3a1ed0c02dc6585ae846151 (plain)
1
2
3
4
5
6
7
8
const http = require("http");
const port = process.argv[2] || "4544";
console.log("port", port);
http
  .Server((req, res) => {
    res.end("Hello World\n");
  })
  .listen(port);