I'm trying to use the Atom's package 'node-debugger' (here), but I can't find a way to add a breakpoint to a file. I tried using F9 being at the line but it does nothing. Any idea?
You can use atom-bugs, I created it since I was looking for a better debugger for my favorite editor atom :) by the way node-debugger is a great tool but it does not satisfy my needs atom-bugs is more user friendly.
How do I debug a Node.js server application?
Right now I'm mostly using alert debugging with print statements like this:
sys.puts(sys.inspect(someVariable));
There must be a better way to debug. I know that Google Chrome has …