Skip to content

Instantly share code, notes, and snippets.

@tswaters
Created August 7, 2015 18:57
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tswaters/d2588be3585bdf1e9bc2 to your computer and use it in GitHub Desktop.
Save tswaters/d2588be3585bdf1e9bc2 to your computer and use it in GitHub Desktop.

setting up nodejs debugging on debian

$ npm insall -g node-inspector

$ node-inspector 
Node Inspector v0.12.2
Visit http://127.0.0.1:8080/?ws=127.0.0.1:8080&port=5858 to start debugging.

in another terminal,

$ node --debug app.js

connect to the ip address directly,

http://xx.xx.xxx.xxx:8080/?ws=xx.xx.xxx.xxx:8080&port=5858

That should do it.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment