我是node.js的新手,当我尝试使用下面的代码运行node.js服务器时,我的cygwin终端没有返回任何结果,当我在浏览器中转到localhost:8888时,我得到一个“结果未找到“错误。我尝试重新安装节点,通过我的Windows防火墙设置打开端口8888,并使用其他端口无济于事。有没有人知道发生了什么?感谢。
var http = require("http");
http.createServer(function(request, response) {
response.writeHead(200, {"Content-Type": "text/plain"});
response.write("Hello World");
response.end();
}).listen(8888);