我刚刚开始使用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:8888
或127.0.0.1:8888
上投放时,我会获得This webpage is not available
。
我也安装了XAMPP,但据我所知,它使用端口80
。
我的安装目录和我的代码目录也不同。这会导致问题吗?任何帮助表示赞赏