mirror of
https://github.com/denoland/deno.git
synced 2024-11-27 16:10:57 -05:00
090169cfbc
This commit adds support for spawning Web Workers in self-contained binaries created with "deno compile" subcommand. As long as module requested in "new Worker" constructor is part of the eszip (by means of statically importing it beforehand, or using "--include" flag), then the worker can be spawned.
14 lines
338 B
TypeScript
14 lines
338 B
TypeScript
/// <reference no-default-lib="true" />
|
|
/// <reference lib="deno.worker" />
|
|
|
|
if (import.meta.main) {
|
|
console.log("Hello from worker!");
|
|
|
|
addEventListener("message", (evt) => {
|
|
console.log(`Received ${evt.data}`);
|
|
console.log("Closing");
|
|
self.close();
|
|
});
|
|
} else {
|
|
console.log("worker.js imported from main thread");
|
|
}
|