const http = require('http');
http.createServer(function (request, response) {
response.setHeader('Content-Type', 'text/html');
response.write('');
response.write('');
response.write('
');
response.write('Hello Node.js');
response.write('');
response.write('');
response.write('');
response.write('Привет миг
');
response.write('Привет миг
');
response.write('Привет миг
');
response.write('');
response.write('');
response.end();
}).listen(3000);