You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

Node Inspector allows you to debug your Node.JS application.


Installation

> npm install -g node-inspector


Start Node-Inspector

> node-inspector


Node Inspector v1.1.1

Visit http://127.0.0.1:8080/?port=5858 to start debugging.


Run your App


By default, the debug port is 5858 so we don't need to specify it here.

> node --debug app.js


To pause your app until Node-Inspector can connect to the app, use the following syntax.

This is helpful when trying to debug code that runs at startup time.

> node --debug-brk app.js 

  • No labels