patryk-developer
6/23/2018 - 8:14 PM

Node.js

var http = require('http');
http.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/plain'});
res.end('Witaj, świecie\n');
}).listen(3000);
console.log('Serwer jest dostępny pod adresem http://localhost:3000/');