来自nodejs服务器的localhost没有响应

时间:2014-10-30 00:07:08

标签: node.js localhost

我刚刚开始使用NodeJs并尝试了一个常见的服务器基本示例 -

var http = require("http");
http.createServer(function(request, response) {
  response.writeHead(200, {"Content-Type": "text/plain"});
  response.write("Hello World");
  response.end();
}).listen(8888);
console.log('Hi there !');

现在,当我使用node example.js运行cmd时,我收到了正确的消息Hi there !。但是,在localhost:8888127.0.0.1:8888上投放时,我会获得This webpage is not available

我也安装了XAMPP,但据我所知,它使用端口80

我的安装目录和我的代码目录也不同。这会导致问题吗?任何帮助表示赞赏

0 个答案:

没有答案