Skip to content

socheatsok78/comlink-loader

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

55 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

comlink-loader

🛰 @socheatsok78/sharedworker-loader 📡

Offload modules to Shared Worker threads seamlessly using Comlink.

@socheatsok78/sharedworker-loader @socheatsok78/comlink-loader

Features

  • Offload almost any module into a Shared Worker with little or no usage change
  • Supports arbitrary classes, objects & functions (await new Foo())
  • Works beautifully with async/await
  • Built-in code-splitting: workers are lazy-loaded

Installation

npm install -D @socheatsok78/sharedworker-loader

Usage

The goal of sharedworker-loader is to make the fact that a module is running inside a Worker nearly transparent to the developer.

Factory Mode (default)

In the example below, there are two changes we must make in order to import MyClass within a Worker via @socheatsok78/sharedworker-loader.

  1. instantiation and method calls must be prefixed with await, since everything is inherently asynchronous.
  2. the value we import from @socheatsok78/sharedworker-loader!./my-class is now a function that returns our module exports.

    Calling this function creates a new instance of the Worker.

my-class.js: (gets moved into a shared worker)

// Dependencies get bundled into the worker:
import rnd from 'random-int';

// Export as you would in a normal module:
export function meaningOfLife() {
  return 42;
}

export class MyClass {
  constructor(value = rnd()) {
    this.value = value;
  }
  increment() {
    this.value++;
  }
  // Tip: async functions make the interface identical
  async getValue() {
    return this.value;
  }
}

main.js: (our demo, on the main thread)

import MyWorker from '@socheatsok78/sharedworker-loader!./my-class';

// instantiate a new Worker with our code in it:
const inst = new MyWorker();

// our module exports are exposed on the instance:
await inst.meaningOfLife(); // 42

// instantiate a class in the worker (does not create a new worker).
// notice the `await` here:
const obj = await new inst.MyClass(42);

await obj.increment();

await obj.getValue();  // 43

Singleton Mode

SharedWorker-loader also includes a singleton mode, which can be opted in on a per-module basis using Webpack's inline loader syntax, or globally in Webpack configuration. Singleton mode is designed to be the easiest possible way to use a Web Worker, but in doing so it only allows using a single Worker instance for each module.

The benefit is that your module's exports can be used just like any other import, without the need for a constructor. It also supports TypeScript automatically, since the module being imported looks just like it would were it running on the main thread. The only change that is required in order to move a module into a Worker using singleton mode is to ensure all of your function calls use await.

First, configure @socheatsok78/sharedworker-loader globally to apply to all *.sharedworker.js files (or whichever pattern you choose). Here we're going to use TypeScript, just to show that it works out-of-the-box:

webpack.config.js:

module.exports = {
  module: {
    rules: [
      {
        test: /\.sharedworker\.(js|ts)$/i,
        use: [{
          loader: '@socheatsok78/sharedworker-loader'
        }]
      }
    ]
  }
}

Now, let's write a simple module that we're going to load in a Shared Worker:

greetings.worker.ts:

export async function greet(subject: string): string {
  return `Hello, ${subject}!`;
}

We can import our the above module, and since the filename includes .sharedworker.ts, it will be transparently loaded in a Shared Worker!

index.ts:

import { greet } from './greetings.sharedworker.ts';

async function demo() {
  console.log(await greet('dog'));
}

demo();

License

Apache-2.0

About

A customized `comlink-loader` for Shared Worker support

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 100.0%