-
Notifications
You must be signed in to change notification settings - Fork 29.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Node v 8: bad option: --expose_debug_as=v8debug #13564
Comments
V8 debugger API had been superseded by the V8 inspector API. If you depend on a module that relies on it you should open a bug against that module. |
duplicate, see #13410 for workarounds |
@lukaszewczak sorry we couldn't do more, but you should check the WebStorm site, they have information about how to work with the new |
Thank you all for the information. |
FYI for anyone who finds this thread, Webstorm 2017.2 will debug with Node 8 |
adding --inspect value in node parameters worked for me |
@packetstracer url is badly linked. this works -> https://intellij-support.jetbrains.com/hc/en-us/community/posts/115000397470/comments/115000392244 Still a great find, saved me a lot of work, thank you |
Hi,
After update to node v 8, it is not possible to debug npm script in Webstorm because of error
bad option: --expose_debug_as=v8debug
. It worked under node v 6.`"C:\Program Files (x86)\JetBrains\WebStorm 2017.1\bin\runnerw.exe" "C:\Program Files\nodejs\node.exe" "C:\Program Files\nodejs\node_modules\npm\bin\npm-cli.js" run debug --scripts-prepend-node-path=auto
node: bad option: --expose_debug_as=v8debug
npm ERR! code ELIFECYCLE
npm ERR! errno 9
npm ERR! [email protected] debug:
node %NODE_DEBUG_OPTION% app.js
npm ERR! Exit status 9
npm ERR!
npm ERR! Failed at the [email protected] debug script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
npm ERR! A complete log of this run can be found in:
npm ERR! C:\Users\Dom\AppData\Roaming\npm-cache_logs\2017-06-08T23_19_05_593Z-debug.log
Process finished with exit code 9`
The text was updated successfully, but these errors were encountered: