Debugging Node.js applications
Bernard Lange
@gustaff_weldon
Bernard Lange
@gustaff_weldon
node debug app.js
For hardcore MUD users
node --debug app.js
or
node --debug-brk app.js
not really useful on it's own
works best when combined with V8 tools
npm install node-inspector -g
node --debug-brk app.js
node-inspector
debugger;
statement to stop flowdebugger;
statement to force breakpointsBernard Lange
@gustaff_weldon
Use a spacebar or arrow keys to navigate