Reputation: 329
I created an executable using nodejs. when I run the executable, it ,sometimes, hangs up at somepoint. however clicking CTR + C in the terminal makes the executable to continue. this only happen on windows. on linux everything works fine.
Upvotes: 3
Views: 1713
Reputation: 2734
This is probably related to windows Quick Edit Mode
. The option makes the cmdlet randomly wait for user input and blocks until it gets it... I don't know what's the idea behind this. So instead CTRL + C
you could basically press any key for continuing it. This happens with Windows Command line in general and is not related to nodejs
.
settings
Quickedit-mode
setting(My Windows has german language. translations: QuickEdit-Modus = Quickedit-mode
and settings = Eigenschaften
git bash
Upvotes: 3