var http = require("http"); http.createServer((req, res) => { res.end("Hello World!"); }).listen(3000);