0

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?

I'm on Mac El Capitan and node 0.10.40

the Tin Man
  • 158,662
  • 42
  • 215
  • 303
R01010010
  • 5,670
  • 11
  • 47
  • 77

2 Answers2

6

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.

atom-bugs

  • atom node-debugger is currently broken for node 6.5, this alternative works finel and indeed is easy to use. Take a look at the "getting started" issue at github – DKebler Sep 11 '16 at 17:38
  • thank you sir @williams-medina, I'm using it and loving it so far :) – ghuroo Nov 24 '16 at 12:29
-1

I just use the debugger statement.

debugger;;

Adding an extra ";" seem to help in some circumstances. :-)