Skip to content

Commit 3eb93e1

Browse files
fhinkelMyles Borins
authored and
Myles Borins
committed
doc: add example for running with v8-inspector
Add example to show what running Node.js with `--inspect` should look like. Some IDEs do not show the link when running with `--inspect`. This example hints to what the full output looks like. PR-URL: #8845 Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Myles Borins <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Gibson Fahnestock <[email protected]>
1 parent 83ed508 commit 3eb93e1

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

doc/api/debugger.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -193,4 +193,12 @@ e.g. `--inspect=9222` will accept DevTools connections on port 9222.
193193
To break on the first line of the application code, provide the `--debug-brk`
194194
flag in addition to `--inspect`.
195195

196+
```txt
197+
$ node --inspect index.js
198+
Debugger listening on port 9229.
199+
Warning: This is an experimental feature and could change at any time.
200+
To start debugging, open the following URL in Chrome:
201+
chrome-devtools://devtools/remote/serve_file/@60cd6e859b9f557d2312f5bf532f6aec5f284980/inspector.html?experiments=true&v8only=true&ws=localhost:9229/node
202+
```
203+
196204
[TCP-based protocol]: https://github.com/v8/v8/wiki/Debugging-Protocol

0 commit comments

Comments
 (0)