Is node-inspect the same thing as node-inspector or something else?
No, `node inspect` is the new command line debugger for `node --inspect` which replaces `node debug` for `node --debug`. The name is derived from `node --inspect` and has no relation to `node-inspector`.
Is this pretty much identical to the old debugger?
1. node --inspect app.js 2. In chrome do `about:inspect`
you now have debugger attached. WIN!
Is node-inspect the same thing as node-inspector or something else?