diff options
author | 2023-09-08 13:49:12 -0700 | |
---|---|---|
committer | 2023-09-08 13:49:12 -0700 | |
commit | 088491cb594ffa4a73f92e42e838a20799986a34 (patch) | |
tree | 7720f7c8900df5574c77f7374a0af9d3f007d0d2 /docs/runtime | |
parent | f27ef667c7b88bdea19ca2b3e9af88f74dc8e703 (diff) | |
download | bun-088491cb594ffa4a73f92e42e838a20799986a34.tar.gz bun-088491cb594ffa4a73f92e42e838a20799986a34.tar.zst bun-088491cb594ffa4a73f92e42e838a20799986a34.zip |
Add extension guide
Diffstat (limited to 'docs/runtime')
-rw-r--r-- | docs/runtime/debugger.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/runtime/debugger.md b/docs/runtime/debugger.md index 39e396ff8..5062da030 100644 --- a/docs/runtime/debugger.md +++ b/docs/runtime/debugger.md @@ -2,7 +2,7 @@ name: Debugger --- -Bun speaks the [WebKit Inspector Protocol](https://github.com/oven-sh/bun/blob/main/packages/bun-vscode/types/jsc.d.ts). For demonstration purposes, consider the following simple web server. +Bun speaks the [WebKit Inspector Protocol](https://github.com/oven-sh/bun/blob/main/packages/bun-vscode/types/jsc.d.ts), so you can debug your code with an interactive debugger. For demonstration purposes, consider the following simple web server. ```ts#server.ts Bun.serve({ |