在同一networking上的另一台计算机上访问节点的服务器上安装Node.js

我已经在我的服务器上传了node.js。 如何从同一networking上的另一台计算机调用node.js? 我创build了node-test.js并在显示Hello World的服务器上运行它。 但是当我去在同一networking上的另一台计算机上的url找不到页面? 有人请帮我这个吗?

var http = require('http'); http.createServer(function (req, res) { res.writeHead(200, {'Content-Type': 'text/plain'}); res.end('Hello World!n'); }).listen(1337, '127.0.0.1'); console.log('Server running at http://127.0.0.1:1337/'); 

进入cmd提示符,检查ipconfig,然后使用该端口号为1337的ip,只使用listen(1337)。