Files
2023-11-08 14:02:38 +03:00

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'
);
})