Update README.md
node-inspect
npm install --global node-inspect
For the old V8 debugger protocol, node has two options:
node --debug <file>
file
node debug <file>
<file>
But for the Chrome inspector protocol, there’s only one: node --inspect <file>.
node --inspect <file>
This project tries to provide the missing second option by re-implementing node debug against the new protocol.
node debug
Usage: node-inspect script.js node-inspect <host>:<port> node-inspect --port=<port>
node inspect
版权所有:中国计算机学会技术支持:开源发展技术委员会 京ICP备13000930号-9 京公网安备 11010802032778号
node-inspectFor the old V8 debugger protocol, node has two options:
node --debug <file>: Startfilewith remote debugging enabled.node debug <file>: Start an interactive CLI debugger for<file>.But for the Chrome inspector protocol, there’s only one:
node --inspect <file>.This project tries to provide the missing second option by re-implementing
node debugagainst the new protocol.References
node inspectCLI debugger