Home > Enterprise >  How to restart the Node.js Inspector after making changes to a file?
How to restart the Node.js Inspector after making changes to a file?

Time:12-26

Does anyone know a faster way to restart the debugger session?

When I edit a file while debugging using the Node.js inspector, I have to press CTRL D to exit the Node.js debugger client, then start the debugger again. I was wondering if there is a better way.

CodePudding user response:

After some research, I have just learned about the restart keyword, which can restart the Node.js debugger client:

debug> restart
  • Related