All Projects β†’ GoogleChromeLabs β†’ Comlink Loader

GoogleChromeLabs / Comlink Loader

Licence: apache-2.0
Webpack loader to offload modules to Worker threads seamlessly using Comlink.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Comlink Loader

Workerize Loader
πŸ—οΈ Automatically move a module into a Web Worker (Webpack loader)
Stars: ✭ 2,135 (+299.07%)
Mutual labels:  webpack, webpack-loader, worker
Polymer Webpack Loader
WebPack Loader for Polymer Web Components
Stars: ✭ 192 (-64.11%)
Mutual labels:  webpack, webpack-loader
Css Modules Typescript Loader
Webpack loader to create TypeScript declarations for CSS Modules
Stars: ✭ 172 (-67.85%)
Mutual labels:  webpack, webpack-loader
One Loader
Single-file components for React
Stars: ✭ 233 (-56.45%)
Mutual labels:  webpack, webpack-loader
Webpack.js.org
Repository for webpack documentation and more!
Stars: ✭ 2,049 (+282.99%)
Mutual labels:  webpack, webpack-loader
Pug As Jsx Loader
Stars: ✭ 168 (-68.6%)
Mutual labels:  webpack, webpack-loader
String Replace Loader
Replace loader for Webpack
Stars: ✭ 205 (-61.68%)
Mutual labels:  webpack, webpack-loader
Style Loader
Style Loader
Stars: ✭ 1,572 (+193.83%)
Mutual labels:  webpack, webpack-loader
Thread
type safe multi-threading made easier
Stars: ✭ 34 (-93.64%)
Mutual labels:  worker, threading
Task Worklet
Task Worklet: explainer, polyfill and demos.
Stars: ✭ 257 (-51.96%)
Mutual labels:  threading, worker
Extract Loader
webpack loader to extract HTML and CSS from the bundle
Stars: ✭ 297 (-44.49%)
Mutual labels:  webpack, webpack-loader
File Loader
File Loader
Stars: ✭ 1,846 (+245.05%)
Mutual labels:  webpack, webpack-loader
Bs Loader
πŸ“» Bucklescript loader for Webpack and Jest
Stars: ✭ 146 (-72.71%)
Mutual labels:  webpack, webpack-loader
Sass Loader
Compiles Sass to CSS
Stars: ✭ 3,718 (+594.95%)
Mutual labels:  webpack, webpack-loader
Svg Sprite Loader
Webpack loader for creating SVG sprites.
Stars: ✭ 1,822 (+240.56%)
Mutual labels:  webpack, webpack-loader
Angular Router Loader
A Webpack loader that enables string-based module loading with the Angular Router
Stars: ✭ 194 (-63.74%)
Mutual labels:  webpack, webpack-loader
Webpack Tools
β˜•οΈJust a simple webpack sample project.
Stars: ✭ 106 (-80.19%)
Mutual labels:  webpack, webpack-loader
Sass Vars Loader
Use Sass variables defined in Webpack config or in external Javascript or JSON files
Stars: ✭ 112 (-79.07%)
Mutual labels:  webpack, webpack-loader
Vue Template Loader
Vue.js 2.0 template loader for webpack
Stars: ✭ 253 (-52.71%)
Mutual labels:  webpack, webpack-loader
Markdown Loader
markdown loader for webpack
Stars: ✭ 335 (-37.38%)
Mutual labels:  webpack, webpack-loader

comlink-loader

πŸ›° comlink-loader πŸ“‘

Offload modules to Worker threads seamlessly using Comlink.

Features

  • Offload almost any module into a 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 comlink-loader

Usage

The goal of comlink-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 comlink-loader.

  1. instantiation and method calls must be prefixed with await, since everything is inherently asynchronous.
  2. the value we import from comlink-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 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 'comlink-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

Comlink-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 comlink-loader globally to apply to all *.worker.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: /\.worker\.(js|ts)$/i,
        use: [{
          loader: 'comlink-loader',
          options: {
            singleton: true
          }
        }]
      }
    ]
  }
}

Now, let's write a simple module that we're going to load in a 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 .worker.ts, it will be transparently loaded in a Web Worker!

index.ts:

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

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

demo();

License

Apache-2.0

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].