如何在启用调试的情况下启动noflo-nodejs,以便我可以使用node-inspector进行调试?
我在调用--debug-brk
noflo-nodejs.cmd
选项
我也尝试过调用node "node_modules\noflo-nodejs\bin\noflo-nodejs" --debug-brk
答案 0 :(得分:3)
首先你可以做什么:
将Node Inspector更新为最新版本(npm update node-inspector
)。
使用node-debug node_modules\noflo-nodejs\bin\noflo-nodejs
或node-debug node_modules\noflo-nodejs
node-debug
是node-inspector的新命令。它以调试模式打开调试过程(与--debug-brk
相同)并在chrome中打开调试器页面(如果它是您的默认浏览器)。
如果node-debug
无效,请尝试:
检查您的端口5858
是免费的。
放入第一个终端node node_modules\noflo-nodejs\bin\noflo-nodejs
放入第二个终端node-inspector
以chrome http://127.0.0.1/debug
如果这不起作用欢迎node-inspector/issues