diff options
author | 2023-09-25 00:39:53 -0700 | |
---|---|---|
committer | 2023-09-25 00:39:53 -0700 | |
commit | 702749319636faf2a96f79d201ed0a7a25af06dd (patch) | |
tree | bbc2aa93d4496be71043889a7069fc55b08e103b /docs/runtime/nodejs-apis.md | |
parent | bd4523798f68350ff6a9a94907a61a4d53884d3c (diff) | |
download | bun-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.md | 8 |
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) |