June 2011
4 posts
Google Swiffy →
1 tag
Debugging with NodeJS and Expresso
NodeJS
git clone https://github.com/joyent/node.git
Expresso
git clone https://github.com/visionmedia/expresso.git
After installing NodeJS and Expresso you will have to make a change to your Expresso file to allow for debugging.
Add the following statement to your code to set a breakpoint in the debugger:
debugger;
Next, run the following to start up the NodeJS debugger and use Expresso for...