如何更改node.jsdebugging端口?
例如,如何将其从5858更改为7000?
你可以使用--debug
选项:
node --debug=7000 app.js
对于nodejs版本> = v8使用这个:
node --inspect=7000 --inspect-brk app.js
在unix命令行中试试这个
$ PORT=7000 node --debug app.js
例如,如何将其从5858更改为7000?
你可以使用--debug
选项:
node --debug=7000 app.js
对于nodejs版本> = v8使用这个:
node --inspect=7000 --inspect-brk app.js
在unix命令行中试试这个
$ PORT=7000 node --debug app.js