Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

threads-es

852Kerfunkle980MIT1.0.0TypeScript support: included

A modern, (almost) zero-dependency WebWorker abstraction.

thread, threads, worker, webworker, web worker, sharedworker, shared worker, pool, parallel, transferable, stream, promise, browser

readme

threads-es

A modern, (almost) zero-dependency WebWorker abstraction.

npm GitHub license GitHub top language Node.js tests

Supports Worker, SharedWorker.

It's made for the web, it doesn't support Node.js workers. Use with bundlers that support bundling workers with import.meta, i.e. Rollup or Webpack 5.

  • Tiny, when minified.
  • Promise based.
  • Fully typed.
  • Well tested.

Documentation

Current documentation at: https://852kerfunkle.github.io/threads-es/v1.0.0

Latest documentation at: https://852kerfunkle.github.io/threads-es/main

Examples

More examples in the tests.

Threads

hello-world.worker.ts

import { exposeApi } from "threads-es/worker"

const helloWorldApi = {
    helloWorld: () => {
        return "Hello World!";
    }
}

export type HelloWorldApiType = typeof helloWorldApi;

exposeApi(helloWorldApi);

controller.ts

import { EsThread } from "threads-es/controller"
import { HelloWorldApiType } from "./hello-world.worker.ts"

const thread = await EsThread.Spawn<HelloWorldApiType>(
    new Worker(new URL("./hello-world.worker.ts", import.meta.url),
    {type: "module"}));

// "Hello World!"
console.log(await thread.methods.helloWorld());

await thread.terminate();

Pools

pool.ts

import { EsThreadPool, EsThread } from "threads-es/controller"
import { HelloWorldApiType } from "./hello-world.worker.ts"

const pool = await EsThreadPool.Spawn(() => EsThread.Spawn<HelloWorldApiType>(
    new Worker(new URL("./hello-world.worker.ts", import.meta.url),
    {type: "module"}), {size: 4});

// "Hello World!"
console.log(await pool.queue(thread => thread.methods.helloWorld()));

await pool.terminate();

Transferables

transfer-array.worker.ts

import { Transfer, TransferDescriptor } from "threads-es/shared";
import { exposeApi } from "threads-es/worker"

const transferArrayApi = {
    transferArray: (array: TransferDescriptor<ArrayBuffer>): TransferDescriptor<ArrayBuffer> => {
        const uint8 = new Uint8Array(array.send);
        // Process the buffer.
        return Transfer(uint8.buffer);
    }
}

export type TransferArrayApiType = typeof transferArrayApi;

exposeApi(transferArrayApi);

controller.ts

import { EsThread } from "threads-es/controller"
import { Transfer } from "threads-es/shared";
import { TransferArrayApiType } from "./transfer-array.worker.ts"

const thread = await EsThread.Spawn<TransferArrayApiType>(
    new Worker(new URL("./transfer-array.worker.ts", import.meta.url),
    {type: "module"}));

const arrayIn = new Uint8Array(10);
arrayIn.forEach((value, index) => { arrayIn[index] = index });

const arrayOut = await thread.methods.transferArray(Transfer(arrayIn.buffer));

// Do something with the result.

await thread.terminate();

Reporting progress from a worker

If you need a worker to report progress you could use a stream. For other options see #4.

progress.worker.ts

import { TransferDescriptor } from 'threads-es/shared';
import { exposeApi } from 'threads-es/worker';

const progressApi = {
    withProgress: async (ags..., progress: TransferDescriptor<WritableStream<number>>) => {
        // Imagine doing some work and updating the progress as it goes along.
        await progress.write(10);
        await progress.write(20);
        await progress.write(100);
        await progress.close();
    }
}

export type ProgressApiType = typeof progressApi;

exposeApi(progressApi);

controller.ts

import { EsThread } from "threads-es/controller"
import { Transfer } from "threads-es/shared"
import { HelloWorldApiType } from "./progress.worker.ts"

const thread = await EsThread.Spawn<ProgressApiType>(
    new Worker(new URL("./progress.worker.ts", import.meta.url),
    {type: "module"}));

const progress = new WritableStream<number>({
    write(p) {
        // You could update the progress in the DOM, or write it to a log, or something like that.
    }
});

await thread.methods.withProgress(args..., Transfer(progress));

await thread.terminate();

Webpack note

With Webpack or certain test frameworks, you might need the separate your thread api types from the thread code:

api-type.ts

export type HelloWorldApiType = {
  helloWorld: () => string;
};

worker.ts

import { exposeApi } from 'threads-es/worker';
import { type HelloWorldApiType } from './api-type';

const helloWorldApi: HelloWorldApiType = {
  helloWorld: () => {
    return 'Hello World!';
  },
};

exposeApi(helloWorldApi);

controller.ts

import { EsThread } from "threads-es/controller"
import { HelloWorldApiType } from "./api-type"

const thread = await EsThread.Spawn<HelloWorldApiType>(
    new Worker(new URL("./hello-world.worker.ts", import.meta.url),
    {type: "module"}));

// "Hello World!"
console.log(await thread.methods.helloWorld());

await thread.terminate();

Inspired by threads.js.

changelog

CHANGELOG

1.0.0

  • No changes. Package appears stable enough for a 1.0.

0.3.4

  • Using EventTarget shim to support certain older browsers (fixes #5).

0.3.3

  • Resolve some issues preventing usage with Webpack (fixes #3).

0.3.2

  • Add fallback for UID generation if crypto.randomUUID is not available (fixes #2).

0.3.1

  • Worker-side improvements:
    • Improve GC for SharedWorkers (addEventListener prevented GC for abruptly disconnected clients).
    • Improve error handling for SharedWorkers.
  • Remove runtime type checks on Transferable objects. Types should be checked at compile time (fixes #1).
  • Added testing with playwright in docker container.

0.3.0

  • Thread and pool are now EventTargets they dispatch unhandled worker errors as events.
  • Added thread lifecycle methods to pool (for per thread init and terminate).
  • Handle thread spawn failure in pool, if some fail, the entire pool fails.
  • Trying to spawn a thread with ServiceWorker now throws an error.
  • Simplified and improved types (for example: WorkerModule is now interface).

0.2.10

  • Documentation.
  • Improved internal types.

0.2.9

  • Change keepSharedWorkersAlive shared worker terminate to forceTerminateShared.
  • Add EsTheadPool.resolved() and EsThread.resolved().
  • Add optional threadTerminate function to EsThreadPool.terminate(), to allow for per-thread cleanup.

0.2.8

  • Add keepSharedWorkersAlive option to EsThreadPool.terminate().
  • EsThreadPool can use SharedWorker threads, but they have to have unique names (see examples).

0.2.7

  • Add keepSharedWorkerAlive option to EsThread.terminate().
  • EsThread: add failiure on timeout.
  • Expand stream examples/tests.
  • Improve types and internals.