doc: Connecting debugger to existing node process

This commit is contained in:
Sugendran Ganess 2012-12-06 11:01:41 +11:00 committed by isaacs
parent 595b5974d7
commit 83154aa15d

View File

@ -136,3 +136,10 @@ breakpoint)
The V8 debugger can be enabled and accessed either by starting Node with
the `--debug` command-line flag or by signaling an existing Node process
with `SIGUSR1`.
Once a process has been set in debug mode with this it can be connected to
with the node debugger. Either connect to the `pid` or the URI to the debugger.
The syntax is:
* `node debug -p <pid>` - Connects to the process via the `pid`
* `node debug <URI> - Connects to the process via the URI such as localhost:5858