Skip to content

Instantly share code, notes, and snippets.

View lilbro1062000's full-sized avatar

Abdoulaye Camara lilbro1062000

View GitHub Profile
@sergixnet
sergixnet / gist:65a2a36184aa4b485d7e
Last active October 26, 2017 07:05
Debugging with node.js, node-inspector and supervisor
Debugging with node.js
1- install supervisor: sudo npm install -g supervisor
2- install node-inspector: sudo npm install node-inspector
3- On a terminal: supervisor --debug path/to/your/app.js
4- On another terminal: node-isnpector
5- Open Google Chrome on http://127.0.0.1:8080/debug?port=5858 and there you are a nice Developer tools to debug ;-)