aboutsummaryrefslogtreecommitdiff
path: root/docs/runtime/nodejs-apis.md
diff options
context:
space:
mode:
authorGravatar Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> 2023-09-25 00:39:53 -0700
committerGravatar Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> 2023-09-25 00:39:53 -0700
commit702749319636faf2a96f79d201ed0a7a25af06dd (patch)
treebbc2aa93d4496be71043889a7069fc55b08e103b /docs/runtime/nodejs-apis.md
parentbd4523798f68350ff6a9a94907a61a4d53884d3c (diff)
downloadbun-702749319636faf2a96f79d201ed0a7a25af06dd.tar.gz
bun-702749319636faf2a96f79d201ed0a7a25af06dd.tar.zst
bun-702749319636faf2a96f79d201ed0a7a25af06dd.zip
Update nodejs-apis.md
Diffstat (limited to 'docs/runtime/nodejs-apis.md')
-rw-r--r--docs/runtime/nodejs-apis.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/runtime/nodejs-apis.md b/docs/runtime/nodejs-apis.md
index 3af562c24..fe340389f 100644
--- a/docs/runtime/nodejs-apis.md
+++ b/docs/runtime/nodejs-apis.md
@@ -10,7 +10,7 @@ This page is updated regularly to reflect compatibility status of the latest ver
### [`node:async_hooks`](https://nodejs.org/api/async_hooks.html)
-🟡 Only `AsyncLocalStorage`, and `AsyncResource` are implemented.
+🟡 Only `AsyncLocalStorage`, and `AsyncResource` are implemented. `AsyncResource` is missing `bind`.
### [`node:buffer`](https://nodejs.org/api/buffer.html)
@@ -26,7 +26,7 @@ This page is updated regularly to reflect compatibility status of the latest ver
### [`node:console`](https://nodejs.org/api/console.html)
-🟡 Missing `Console` constructor.
+🟢 Fully implemented.
### [`node:crypto`](https://nodejs.org/api/crypto.html)
@@ -485,7 +485,7 @@ The table below lists all globals implemented by Node.js and Bun's current compa
### [`console`](https://developer.mozilla.org/en-US/docs/Web/API/console)
-🟡 Missing `Console` constructor.
+🟢 Fully implemented.
### [`CountQueuingStrategy`](https://developer.mozilla.org/en-US/docs/Web/API/CountQueuingStrategy)
@@ -621,7 +621,7 @@ The table below lists all globals implemented by Node.js and Bun's current compa
### [`require()`](https://nodejs.org/api/globals.html#require)
-🟢 Fully implemented, as well as [`require.main`](https://nodejs.org/api/modules.html#requiremain), [`require.cache`](https://nodejs.org/api/modules.html#requirecache), and [`require.resolve`](https://nodejs.org/api/modules.html#requireresolverequest-options).
+🟢 Fully implemented, including [`require.main`](https://nodejs.org/api/modules.html#requiremain), [`require.cache`](https://nodejs.org/api/modules.html#requirecache), [`require.resolve`](https://nodejs.org/api/modules.html#requireresolverequest-options)
### [`Response`](https://developer.mozilla.org/en-US/docs/Web/API/Response)