简体   繁体   中英

nodejs start debugger on different port

Im a little confused with all this nodejs debug syntax flying around. I simply want to start the debugger on a process when I run it on a different port.

Normally I start debugging by node debug file.js

but now I have to process` running that I need to debug

Now I found the command node --debugger=7873 file.js but that starts the debugger and jumps past all the breaks and I tried node --debugger=7837 --debug-brk file.js but that forces me to consume another teminal window. How can I just run a script on a different port in the same terminal or with out using nohup?

node debug --port=[your port] your_program.js

负责的_debugger代码在这里

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM