WebStorm debug mode not working and get message Process finished with exit code -1073741819 (0xC0000005) WebStorm debug mode not working and get message Process finished with exit code -1073741819 (0xC0000005) google-chrome google-chrome

WebStorm debug mode not working and get message Process finished with exit code -1073741819 (0xC0000005)


I have had same problem.Check version of node.js in your webstorm terminal: node --versionMy version was 5.2 and I had this bug.Today I update node to 5.5.0(last stable) and this problem gone.

NOTE: If you use Webstorm 9 or 10 go to

C:\Program Files (x86)\JetBrains\WebStorm 9.0\bin

and open WebStorm64.exe.vmoptions and WebStorm.exe.vmoptions and in the end set

-Dnodejs.debugger.use.jb.support=false

this will help to stop on your breakpoint.If you use Webstorm 11 you will not have this problem, but if you will - use fix for WebStorm 9/10.

Hope this will help you.


I have had some problem. I was tried @user3552 solution but not worked for me second time. I checked my node params and removed this param from my node params. This is working now.

--debug-brk=8081

Before removing one param my exec code was like this

 /home/veysel/.nave/installed/5.0.0/bin/node --debug-brk=37621 -debug-brk=8081 --expose_debug_as=v8debug /opt/lampp/htdocs/kart/server.js 8080

After removing the last exec code like this.

  /home/veysel/.nave/installed/5.0.0/bin/node --debug-brk=37621 --expose_debug_as=v8debug /opt/lampp/htdocs/kart/server.js 8080