mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Jan Krems
a7e4b029da
|
8 years ago | |
---|---|---|
.. | ||
examples | 8 years ago | |
lib | 8 years ago | |
test | 8 years ago | |
tools/eslint-rules | 8 years ago | |
.editorconfig | 8 years ago | |
.eslintrc | 8 years ago | |
.gitignore | 8 years ago | |
.npmrc | 8 years ago | |
.travis.yml | 8 years ago | |
CHANGELOG.md | 8 years ago | |
CONTRIBUTING.md | 8 years ago | |
GOVERNANCE.md | 8 years ago | |
LICENSE | 8 years ago | |
README.md | 8 years ago | |
appveyor.yml | 8 years ago | |
cli.js | 8 years ago | |
package.json | 8 years ago |
README.md
node-inspect
npm install --global node-inspect
For the old V8 debugger protocol, node has two options:
node --debug <file>
: Startfile
with remote debugging enabled.node debug <file>
: Start an interactive CLI debugger for<file>
.
But for the Chrome inspector protol,
there's only one: node --inspect <file>
.
This project tries to provide the missing second option
by re-implementing node debug
against the new protocol.
Usage: node-inspect script.js
node-inspect <host>:<port>