node-inspector --webhost不是本地的!它是一个网络应用程序

时间:2014-02-18 06:59:23

标签: node.js node-inspector

如果我输入

node --debug /home/engine/public_html/myapp.js

然后在另一个腻子标签

node-inspector --webhost http://website.com

我仍然告诉我打开浏览器并查看本地...

Node Inspector v0.7.0-2
info  - socket.io started
Visit http://127.0.0.1:8080/debug?port=5858 to start debugging.

我的网站在线不在本地。当我去这个地址时,检查员告诉我铬说

This webpage is not available

我已打开端口5858和8080我看不出这是怎么工作的。

1 个答案:

答案 0 :(得分:0)

当我尝试使用node-inspector调试我的远程站点时,甚至我得到了localhost url。

启动检查器和应用后,请尝试访问网址 http://website.com/debug?port=port_number

以下是步骤:

  1. 启动Node Inspector服务器 $ node-inspector --web-port = 5050

  2. 在Node进程中启用调试模式 $ node --debug = 5050 app.js

  3. 加载调试器UI 在Chrome浏览器中打开http://website.com/debug?port=5050