Skip to content

Commit 0c406a1

Browse files
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.
1 parent 72c60e8 commit 0c406a1

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

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)