Appreciate inputs to debug easily and effectively an already installed third party node module (say mkdirp or expressjs ...)
I looked at node-inspector but looks like it can debug only direct scripts (like node-debug myscript.js).
But for my case, I want to debug the installed module directly when i use it in the terminal. For example, when i run the browserify in the terminal using browserify main.js -o bundle.js, i want to start debugging the browserify module code.
Currently placing console.log statements in the third party code which is very painful.