Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to quit nodejs debug mode quit

Normally i can quit node app by press ctrl + c, however during debug mode, if i continue press c which is

c => continue with code execution

however by the end of the execution, i couldn't exit, i tried press q and ctrl+c, please find the screenshot below, it just stuck there. This can be annoying during debugging...

wondering if i am doing incorrectly or there is another shortcut or hotkey to quit.

enter image description here

nodejs 5.5.0

like image 251
Bill Avatar asked Sep 08 '26 13:09

Bill


1 Answers

In order to quit the debug mode you need to press Ctrl+C twice. Alternatively you can type .exit and press Enter.

like image 134
Michael Troger Avatar answered Sep 11 '26 06:09

Michael Troger