如何将它从5858更改为7000,例如?
答案 0 :(得分:91)
您可以使用--debug
选项:
node --debug=7000 app.js
您可以使用--inspect
选项获取最新节点> = v8
node --inspect=7000 app.js
答案 1 :(得分:3)
对于nodejs版本> = v8,请使用:
node --inspect=7000 --inspect-brk app.js
答案 2 :(得分:-7)
只需试试这个
$ PORT=7000 node --debug app.js