aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorGravatar Colin McDonnell <colinmcd94@gmail.com> 2023-08-03 17:48:18 -0700
committerGravatar Colin McDonnell <colinmcd94@gmail.com> 2023-08-03 17:48:18 -0700
commit9222316101fef45d235a06fec7e258d8874e7728 (patch)
tree6640b33430ba80da6e04b683bc68cbdba02e3c13 /docs
parentd10860d272fa266c9c064c4e75219af6a2b8bb73 (diff)
downloadbun-9222316101fef45d235a06fec7e258d8874e7728.tar.gz
bun-9222316101fef45d235a06fec7e258d8874e7728.tar.zst
bun-9222316101fef45d235a06fec7e258d8874e7728.zip
Update Node.js compat docs
Diffstat (limited to 'docs')
-rw-r--r--docs/runtime/nodejs-apis.md6
-rw-r--r--docs/runtime/web-apis.md2
2 files changed, 4 insertions, 4 deletions
diff --git a/docs/runtime/nodejs-apis.md b/docs/runtime/nodejs-apis.md
index 4ee3f7cbc..67a6bf498 100644
--- a/docs/runtime/nodejs-apis.md
+++ b/docs/runtime/nodejs-apis.md
@@ -38,7 +38,7 @@ This page is updated regularly to reflect compatibility status of the latest ver
### [`node:diagnostics_channel`](https://nodejs.org/api/diagnostics_channel.html)
-🔴 Not implemented.
+🟢 Fully implemented.
### [`node:dns`](https://nodejs.org/api/dns.html)
@@ -162,7 +162,7 @@ This page is updated regularly to reflect compatibility status of the latest ver
### [`node:worker_threads`](https://nodejs.org/api/worker_threads.html)
-🔴 Not implemented, but coming soon.
+🟢 Fully implemented.
### [`node:zlib`](https://nodejs.org/api/zlib.html)
@@ -461,7 +461,7 @@ The table below lists all globals implemented by Node.js and Bun's current compa
### [`BroadcastChannel`](https://developer.mozilla.org/en-US/docs/Web/API/BroadcastChannel)
-🔴 Not implemented.
+🟢 Fully implemented.
### [`btoa()`](https://developer.mozilla.org/en-US/docs/Web/API/btoa)
diff --git a/docs/runtime/web-apis.md b/docs/runtime/web-apis.md
index f2731a733..98c822274 100644
--- a/docs/runtime/web-apis.md
+++ b/docs/runtime/web-apis.md
@@ -17,7 +17,7 @@ The following Web APIs are partially or completely supported.
---
- Web Workers
-- [`Worker`](https://developer.mozilla.org/en-US/docs/Web/API/Worker) [`self.postMessage`](https://developer.mozilla.org/en-US/docs/Web/API/DedicatedWorkerGlobalScope/postMessage) [`structuredClone`](https://developer.mozilla.org/en-US/docs/Web/API/structuredClone) [`MessagePort`](https://developer.mozilla.org/en-US/docs/Web/API/MessagePort) [`MessageChannel`](https://developer.mozilla.org/en-US/docs/Web/API/MessageChannel). Missing `BroadcastChannel`.
+- [`Worker`](https://developer.mozilla.org/en-US/docs/Web/API/Worker) [`self.postMessage`](https://developer.mozilla.org/en-US/docs/Web/API/DedicatedWorkerGlobalScope/postMessage) [`structuredClone`](https://developer.mozilla.org/en-US/docs/Web/API/structuredClone) [`MessagePort`](https://developer.mozilla.org/en-US/docs/Web/API/MessagePort) [`MessageChannel`](https://developer.mozilla.org/en-US/docs/Web/API/MessageChannel), [`BroadcastChannel`](https://developer.mozilla.org/en-US/docs/Web/API/BroadcastChannel).
---