0
0
mirror of https://github.com/nodejs/node.git synced 2024-11-30 07:27:22 +01:00
nodejs/deps/node-inspect
Jan Krems 021719738e
deps: update node-inspect to v1.11.2
PR-URL: https://github.com/nodejs/node/pull/12363
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Alexey Orlenko <eaglexrlnk@gmail.com>
2017-04-14 23:48:05 +02:00
..
examples
lib deps: update node-inspect to v1.11.2 2017-04-14 23:48:05 +02:00
test/cli deps: update node-inspect to v1.11.2 2017-04-14 23:48:05 +02:00
tools/eslint-rules
.editorconfig
.eslintrc
.gitignore
.npmrc
.travis.yml
appveyor.yml
CHANGELOG.md deps: update node-inspect to v1.11.2 2017-04-14 23:48:05 +02:00
cli.js
CONTRIBUTING.md
GOVERNANCE.md
LICENSE
package.json deps: update node-inspect to v1.11.2 2017-04-14 23:48:05 +02:00
README.md

node-inspect

npm install --global node-inspect

For the old V8 debugger protocol, node has two options:

  1. node --debug <file>: Start file with remote debugging enabled.
  2. 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>

References