@solid-primitives/workers
TypeScript icon, indicating that this package has built-in type declarations

0.4.0 • Public • Published

Solid Primitives Workers

@solid-primitives/workers

size size stage

A set of utility to support using Web Workers and Shared Workers:

createWorker - Provides a getter and setter for the primitive.

createWorkerPool - Creates a pool of workers and round-robins requests between each.

createSignaledWorker - Creates a work with that reads and writes to signals.

How to use it

createWorker

Create a basic web worker:

const [worker, start, stop] = createWorker(function add(a, b) {
  return a + b;
});
console.log(await worker.add(1, 2));
// output: 3

createWorkerPool

Create a worker pool with a set concurrency:

const [pool, start, stop] = createWorkerPool(4, function add(a, b) {
  return a + b;
});
console.log(await pool.add(1, 2));
// output: 3

createSignaledWorker

Create a more advanced worker that accepts multiple instructional inputs:

const [input, setInput] = createSignal([1, 1]);
const [output, setOutput] = createSignal([1, 1]);
createSignaledWorker({
  input,
  output: setOutput,
  func: function add([a, b]) {
    return a + b;
  },
});
setInput([1, 2]);
console.log(output());
// output: 3

Demo

You may view a working example here: [ link to Stackblize or CodeSandBox ]

Changelog

See CHANGELOG.md

Inspiration

Inspired by Jason Miller's worker function. Borrows the RPC and function export method.

Package Sidebar

Install

npm i @solid-primitives/workers

Weekly Downloads

35

Version

0.4.0

License

MIT

Unpacked Size

13.1 kB

Total Files

7

Last publish

Collaborators

  • davedbase
  • lexlohr
  • thetarnav.