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

时间:2013-09-20 06:45:20

标签: node.js debugging

如何将它从5858更改为7000,例如?

3 个答案:

答案 0 :(得分:91)

您可以使用--debug选项:

node --debug=7000 app.js

您可以使用--inspect选项获取最新节点> = v8

node --inspect=7000 app.js

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

答案 1 :(得分:3)

对于nodejs版本> = v8,请使用:

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

答案 2 :(得分:-7)

unix命令行中的

只需试试这个

 $ PORT=7000 node --debug app.js