Your browser doesn't support the features required by impress.js, so you are presented with a simplified version of this presentation.

For the best experience please use the latest Chrome, Safari or Firefox browser. Upcoming version 10 of Internet Explorer should also handle it.

Debugging Node.js applications

Bernard Lange
@gustaff_weldon

No Developer tools

Not all hope is lost

Node.js' built in debugger

node debug app.js
built in node.js debugger http://nodejs.org/api/debugger.html
MUD user

For hardcore MUD users

Running Node.js in debug mode


node --debug app.js
              
or

node --debug-brk app.js
              
node.js in debug mode

not really useful on it's own

v8 engine wine table-shelf

works best when combined with V8 tools

Hmmm,
but V8 is used as well in Chrome...


npm install node-inspector -g
node --debug-brk app.js
node-inspector
              

From console to browser

To IDE

IntelliJ (PHP/Web)Storm

http://bit.ly/webstorm-node-debug
http://c9.io/

Takeaways

Questions?

Thank you

Bernard Lange
@gustaff_weldon

Use a spacebar or arrow keys to navigate