aboutsummaryrefslogtreecommitdiff
path: root/docs/runtime/nodejs-apis.md
diff options
context:
space:
mode:
authorGravatar Jarred Sumner <jarred@jarredsumner.com> 2023-07-16 21:15:24 -0700
committerGravatar GitHub <noreply@github.com> 2023-07-16 21:15:24 -0700
commit209dc981c0ef52de5c80eab5d24ec8a8eba765e8 (patch)
treec3d203d03d109161bcaf25558c05fda49c5e864e /docs/runtime/nodejs-apis.md
parent7fc392b182fa45d1fa33e654c2b4d1f1022a1ac3 (diff)
downloadbun-209dc981c0ef52de5c80eab5d24ec8a8eba765e8.tar.gz
bun-209dc981c0ef52de5c80eab5d24ec8a8eba765e8.tar.zst
bun-209dc981c0ef52de5c80eab5d24ec8a8eba765e8.zip
Implement Workers (#3645)
* copy files * format * options * Introduce `Worker`, `onmessage`, `onerror`, and `postMessage` globals * Stub `Worker.prototype.ref` & `Worker.prototype.unref` * Update web_worker.zig * Worker works * Add "mini" mode * add wakeup * Partially fix the keep-alive issue * clean up refer behavior * Implement `serialize` & `deserialize` in `bun:jsc` & add polyfill for `node:v8` * Types & docs * Update globals.d.ts * Add mutex * Fixes --------- Co-authored-by: Dylan Conway <dylan.conway567@gmail.com> Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com>
Diffstat (limited to 'docs/runtime/nodejs-apis.md')
-rw-r--r--docs/runtime/nodejs-apis.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/runtime/nodejs-apis.md b/docs/runtime/nodejs-apis.md
index 2e45fd945..db4844b7e 100644
--- a/docs/runtime/nodejs-apis.md
+++ b/docs/runtime/nodejs-apis.md
@@ -231,7 +231,7 @@ This page is updated regularly to reflect compatibility status of the latest ver
- {% anchor id="node_v8" %} [`node:v8`](https://nodejs.org/api/v8.html) {% /anchor %}
- 🔴
-- Not implemented or planned. For profiling, use [`bun:jsc`](/docs/project/benchmarking#bunjsc) instead.
+- `serialize` and `deserialize` use JavaScriptCore's wire format instead of V8's. Otherwise, not implemented. For profiling, use [`bun:jsc`](/docs/project/benchmarking#bunjsc) instead.
---