如何更改node.js调试端口?


Answers:


114

您可以使用以下--debug选项:

node --debug=7000 app.js

您可以--inspect对>> v8的最新节点使用选项

node --inspect=7000 app.js

https://nodejs.org/en/docs/inspector/


当让Grunt运行多个并发任务并且仍将它们全部同时调试时,这非常有用。
Venning

1
相同的语法适用于nodemon,因为它将参数传递给node。
同步

4

对于nodejs版本> = v8,请使用以下命令:

node --inspect=7000 --inspect-brk app.js

我认为这种情况至少可以追溯到节点v6。(但不是v4。)
David Knipe

-8

在Unix命令行中只需尝试一下

 $ PORT=7000 node --debug app.js
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.