我运行节点
node --debug app
OR
node --debug-brk app
它回应
debugger listening on port 5858
Express server listening on port 1338
我现在启动节点检查器
node-inspector --web-port=5859
它回应
Node Inspector v0.3.2
info - socket.io started
Visit http://127.0.0.1:5859/debug?port=5858 to start debugging.
打开 chrome 并转到
http://127.0.0.1:5859/debug?port=5858
控制台记录以下内容
使用 TCPview,它显示节点正在侦听端口 5858,但它没有建立连接。尝试连接时,节点控制台上会显示此消息
}Content-Length: 108
没有其他的。然后我试图让调试器在不同的端口上运行:
node --debug=5000 app
node-inspector --debug-port=5000 --web-port=5859
但节点检查器不会连接编辑:那么错误与节点无关。我安装了 Eclipse 节点环境并能够调试。决定让节点检查员受益并重新安装。
npm uninstall node-inspector
npm WARN uninstall not installed in C:\Program Files\nodejs\node_modules: "node-inspector"
重新安装节点重新安装铬没有运气同样的问题。
所以 Eclipse 就是这样。