我正在使用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
防火墙已完全关闭。
有帮助吗?