Node Debug Error - Process finished with exit code 0xc0000005

Hi,

I am getting Windows access error details mentioned below when running debug configuration. 

"C:\Program Files\JetBrains\WebStorm 2017.1.3\bin\runnerw.exe" "C:\Program Files\nodejs\node.exe" --debug-brk=59114 --expose_debug_as=v8debug C:\Work\test\heyManga\fetch.js -s=esp
Debugger listening on [::]:59114

Process finished with exit code -1073741819 (0xC0000005)

 Webstorm details are: 

WebStorm 2017.1.4
Build #WS-171.4694.29, built on June 7, 2017
JRE: 1.8.0_112-release-736-b21 amd64
JVM: OpenJDK 64-Bit Server VM by JetBrains s.r.o
Windows 10 10.0
My Node version is v6.10.3.

Please let me know, how to get rid of this problem. I am unable to provide additional logs as this is intermittent error and sometimes it is not replicable.

 

1
2 comments

This is 'access violation' error that is likely a problem with Node.js itself/V8 debugging protocol, not with WebStorm debugger. Could you please try to debug your app with node-inspector? Run your application in console using node --debug-brk your_app.js; echo "Exit code: $?" ('echo' is needed to see the exit code), the run node-inspector and attach to the process (it will output URL to open in browser to debug the app)
All debugger-related issues: https://github.com/nodejs/node/issues?q=label%3Adebugger

0
Avatar
Permanently deleted user

For me the issue resolved by simply running the project through node configuration

node server.js 

instead of having the configuration running through npm

npm run start
0

Please sign in to leave a comment.