Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

IntelliJ Node.js debug process exit -1

I've setup a project in IntelliJ 13 to run my nodeJS app. It runs fine. The problem is I can't use the debugger. When I try to run in debug mode the console prints

"C:\Program Files\nodejs\node.exe" --debug-brk=50839 --debug app.js
debugger listening on port 50839

Process finished with exit code -1

The console tab displays "Process disconnected unexpectedly"

like image 746
andrepcg Avatar asked Nov 10 '22 09:11

andrepcg


1 Answers

I had the same error with debug mode ("Process finished with exit code -1073741510") The problem was solved when I removed old watches from watch list. Debugger seems to be sensitive to those garbage watches.

like image 153
yggdraa Avatar answered Nov 14 '22 22:11

yggdraa