8 lines
282 B
JavaScript
8 lines
282 B
JavaScript
const http = require('http');
|
|
http.createServer(function (request, response) {
|
|
response.end('Hello NodeJS!');
|
|
}).listen(3000, '127.0.0.1', function () {
|
|
console.log(
|
|
'Сервер начал прослушивание запросов на порту 3000'
|
|
);
|
|
}) |