Node.js localhost错误

时间:2017-04-17 05:39:39

标签: node.js localhost port

我是node.js中的新手,我无法创建一个简单的服务器,我真的不知道为什么,但当时我打开了localhost /'端口',页面就是这样。 ..没有充电。 这是代码。

var http = require('http');
var server = http.createServer(function (request, response) {
response.writeHead(200, {"Content-Type": "text/plain"});
response.end("Hello World\n");
});
server.listen(8080);
console.log("Server running at http://127.0.0.1:8000/");
在控制台中我有这条消息 console message

但在浏览器中我有这个 browser

我真的...真的很想知道为什么...... 谢谢:))

1 个答案:

答案 0 :(得分:0)

您键入http://localhost/8080

时键入http://localhost:8080/