我们可以使用语法在nodeJs中调试应用程序:node-debug app.js
但是如何使用nodemon进行调试
我试过了nodemon --debug app.js
,但它不起作用。
请帮我如何使用nodemon进行调试
在此先感谢:)
答案 0 :(得分:0)
当前,不建议使用“ --debug”,而应使用“ --inspect”。
简单键入:$ nodemon --inspect app.js
您将看到如下输出:
[nodemon] 2.0.4
[nodemon] to restart at any time, enter `rs`
[nodemon] watching path(s): *.*
[nodemon] watching extensions: js,mjs,json
[nodemon] starting `node --inspect server.js`
Debugger listening on ws://127.0.0.1:9229/26849510-cfac-4aae-8dc0-8d9883809ba5
For help, see: https://nodejs.org/en/docs/inspector
Debugger attached...
要打开GUI调试器,请打开Chrome浏览器,然后在URL字段中输入:
[chrome:// inspect#devices]
您将在打开的页面底部看到:
[ Remote Target
#LOCALHOST
Target (v12.18.3) trace
app.js
file:///[your local path of the app.js ]
inspect
单击以检查,您将看到调试器...享受它...