I have been debugging and inspecting with node-inspector with Node.js for a long time, but I have never seen any documentation that allows you to start the debugging environment with an environment variable.
Does anyone know if I can do this:
node --inspect-brk foo.js
node --debug-brk foo.js
using an env variable instead? something like:
NODE_INSPECT=yes node foo.js
NODE_DEBUG_BRK=yes node foo.js