我确实将所有需要的包和 node.js 安装到专用机器 Windows 2008 Server。
var http = require('http');
var port = 1337;
http.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/plain'});
res.end('Hello World\n');
}).listen(port, '127.0.0.1');
console.log('Server running at http://127.0.0.1:' + port );
因此,当我调用 http://local.host:1337/时,我会得到“Hello World” 但是如果尝试从另一台机器调用此服务: http://my.domain.ip.address:1337/ 哎呀,我可以什么也看不见。我已经完全关闭了防火墙
谢谢,所有的建议