在本地主机上启动一个node.js页面-无法访问该网站

时间:2019-05-10 18:41:43

标签: node.js windows

我正在使用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

防火墙已完全关闭。

有帮助吗?

0 个答案:

没有答案