var http = require('http'); const content = '' + '' + '' + '' + '' ; http.createServer(function (req, res) { res.writeHead(200, {'Content-Type': 'text/html'}); res.end(content); }).listen(11111, '127.0.0.1');