大家好,小弟使用node-inspector可以正常通过http://localhost:3000/debug?port=5858 看到js源码了,貌似根据网络上的教程已经配置成功了,问题是我要调试的js代码是通过页面操作后才能执行,但是现在访问http://localhost:3000会报错,貌似服务没启动,不知道怎么弄? 我的步骤是: 1)node --debug-brk 2)node-inspector --web-port=3000 site端口是3000 PS:怎么粘贴图片啊
5 回复
1)node --debug-brk app.js, 这个app.js是侦听3000端口的web应用 2)node-inspector,别加参数,使用默认值8080端口 3)用Chrome打开 http://127.0.0.1:8080/debug?port=5858,会打开调试工具,并设置断点。 4)http://localhost:3000执行到断点