summaryrefslogtreecommitdiff
path: root/docs/runtime
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2020-05-07 21:15:59 +0200
committerGitHub <noreply@github.com>2020-05-07 21:15:59 +0200
commitaca21dad1ba576e2e8b81cfa5ac87d58c69f1de6 (patch)
tree15b657060b27cf48a9d4dc15fd3dd1464dd76a9d /docs/runtime
parent2b66b8a03e4f81cc158be40d07534f26fa762c2b (diff)
BREAKING: make Worker.deno unstable (#5128)
This commit makes "Worker.deno" option unstable. Added new manual entry "docs/runtime/workers.md". Removed stale workers tests.
Diffstat (limited to 'docs/runtime')
-rw-r--r--docs/runtime/workers.md54
1 files changed, 54 insertions, 0 deletions
diff --git a/docs/runtime/workers.md b/docs/runtime/workers.md
new file mode 100644
index 000000000..0418f057e
--- /dev/null
+++ b/docs/runtime/workers.md
@@ -0,0 +1,54 @@
+## Workers
+
+Deno supports
+[`Web Worker API`](https://developer.mozilla.org/en-US/docs/Web/API/Worker/Worker).
+
+Workers can be used to run code on multiple threads. Each instance of `Worker`
+is run on a separate thread, dedicated only to that worker.
+
+Currently Deno supports only `module` type workers; thus it's essential to pass
+`type: "module"` option when creating new worker:
+
+```ts
+// Good
+new Worker("./worker.js", { type: "module" });
+
+// Bad
+new Worker("./worker.js");
+new Worker("./worker.js", { type: "classic" });
+```
+
+### Using Deno in worker
+
+**UNSTABLE**: This feature is unstable and requires `--unstable` flag
+
+By default `Deno` namespace is not available in worker scope.
+
+To add `Deno` namespace pass `deno: true` option when creating new worker:
+
+```ts
+// main.js
+const worker = new Worker("./worker.js", { type: "module", deno: true });
+worker.postMessage({ filename: "./log.txt" });
+
+// worker.js
+self.onmessage = async (e) => {
+ const { filename } = e.data;
+ const text = await Deno.readTextFile(filename);
+ console.log(text);
+ self.close();
+};
+
+// log.txt
+hello world
+```
+
+```shell
+$ deno run --allow-read --unstable main.js
+hello world
+```
+
+When `Deno` namespace is available in worker scope; the worker inherits parent
+process permissions (the ones specified using `--allow-*` flags).
+
+We intend to make permissions configurable for workers.