summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorDenys Otrishko <shishugi@gmail.com>2019-11-22 19:29:58 +0200
committerDaniel Bevenius <daniel.bevenius@gmail.com>2019-11-25 06:11:09 +0100
commit84a95b82204a987fb3fc859e757a8c0df004a1f0 (patch)
tree4869d058631874e483e242db25eff214fbd81ff9 /doc
parentce4f97c779711aa457db5f0e8816f3c640825bfd (diff)
downloadandroid-node-v8-84a95b82204a987fb3fc859e757a8c0df004a1f0.tar.gz
android-node-v8-84a95b82204a987fb3fc859e757a8c0df004a1f0.tar.bz2
android-node-v8-84a95b82204a987fb3fc859e757a8c0df004a1f0.zip
doc: add note about debugging worker_threads
PR-URL: https://github.com/nodejs/node/pull/30594 Fixes: https://github.com/nodejs/node/issues/30197 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
Diffstat (limited to 'doc')
-rw-r--r--doc/api/debugger.md5
1 files changed, 5 insertions, 0 deletions
diff --git a/doc/api/debugger.md b/doc/api/debugger.md
index 823574f1bc..e43cfa8a16 100644
--- a/doc/api/debugger.md
+++ b/doc/api/debugger.md
@@ -197,5 +197,10 @@ debugging sessions.)
If the Chrome browser is older than 66.0.3345.0,
use `inspector.html` instead of `js_app.html` in the above URL.
+Chrome DevTools doesn't support debugging [Worker Threads][] yet.
+[ndb][] can be used to debug them.
+
[Chrome DevTools Protocol]: https://chromedevtools.github.io/devtools-protocol/
[V8 Inspector]: #debugger_v8_inspector_integration_for_node_js
+[Worker Threads]: worker_threads.html
+[ndb]: https://github.com/GoogleChromeLabs/ndb/