The Quickest, Shortest Way To Start A Server With Node.js
node -e 'require("http").createServer((_, res) => res.end("Hello, World!")).listen(80)'
node -e 'require("http").createServer((_, res) => res.end("Hello, World!")).listen(80)'