Files
Lab4/1/app.js
MishaBagger b6c10cc93f MACHIN
2023-10-25 09:15:21 +03:00

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