Can't get node-debug to work Can't get node-debug to work node.js node.js

Can't get node-debug to work


By default node-debug starts app in --debug-brk mode. This stops your app at first line (express not started).

You can use node-debug --no-debug-brk see the node-debug --h for more info.


Agh. Okay, looked at some more questions before I got this posted. Looks like the problem was just that I wasn't running the original instance in debug mode. Nobody had told me I had to, so I just didn't know otherwise!

What's working for me now:

> node debug web

then in a different terminal

> node-debug web.js