Open saadq opened 7 years ago
Possibly related to https://github.com/kiddkai/atom-node-debugger/issues/234 and https://github.com/kiddkai/atom-node-debugger/issues/237
Try explicitly setting the path, e.g. --inspect=5858
. Not sure you'll get it to work though. I can only inspect variables on node 4, not on node 6+.
@saadq Did you ever find a fix?
Unfortunately no, I've just been debugging node with Chrome lately. One thing you may want to try instead is xatom-debug + xatom-debug-nodejs as an alternative, I remember it working for me when I tried.
I had this same issue, but after manually setting the Node Path (/usr/local/bin/node), I can now use the debugger.
@guerillagorilla Thanks, that did the trick for me too.
This allows node to run and actually start the app, but the connection is still never made to the debugger so no data ever comes back in the panel ;(
Any fix for this?
It looks to me like this code relies on the deprecated (since node 7.7) internal _debugger.js. The new approach is to use the node inspector.
I'm having issues getting the debugger to run. Breakpoints are working, but trying to do
Start Resume
orStart Active File
doesn't seem to run the file. Steps to reproduce my issue:When I do the last step, all that happens is this in the console:
I am on macOS Sierra Version 10.12.2. Any help would be appreciated.