Я нахожусь на Chrome / Windows 7 и пытаюсь сделать мои первые шаги node.js, используя этот учебник:
https://www.w3schools.com/nodejs/nodejs_get_started.asp
То есть myfirst.js
это:
var http = require('http');
http.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/html'});
res.end('Hello World!');
}).listen(8080);
Продолжаю http://localhost:8080/
Я получаю ошибку:
This site can’t be reached localhost refused to connect.
Try:
Checking the connection
Checking the proxy and the firewall
ERR_CONNECTION_REFUSED
Брандмауэр полностью отключен.
Любая помощь?