我是 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);