How can I debug node modules?

2019-04-07 00:22发布

问题:

I am looking into getting involved with the rather exciting node.js, but I'm trying to find ways to replace my current development environment.

At present, my best friend in PHPLand is FirePHP module for Firebug, which is a god send as far as debugging your PHP goes. What methods do I have at my disposal for debugging node code? Does it output errors and warnings like PHP can be set to?

回答1:

There are multiple ways to debug node.

  • node debug app.js
  • node-inspector
  • console
  • util

Personally I use a lot of well place console.log, console.dir and util.inspect statements throughout my code and follow the logic that way.

Of course unit tests come hand in hand with debugging. Write tests that assert your code work. The unit tests will cover catching most of the bugs.

You must write unit tests for your node.js code. nodeunit is great for general testing.

If your using express as your web engine then use expresso