This package has been deprecated

Author message:

All Cloud CNC projects have been deprecated!

rollup-plugin-threads
TypeScript icon, indicating that this package has built-in type declarations

1.2.0 • Public • Published

ThreadsJS Rollup integration

npm CI/CD

ThreadsJS integration for Rollup. If you're using Webpack, you may want to check out threads-webpack-plugin (Basically does the same thing as this plugin but for Webpack).

Features

  • Fully tested
  • Very flexible
  • Written in modern TypeScript
  • Thoroughly commented

FAQ

How does it work?

This plugin simply takes any ThreadJS workers and executes a second Rollup bundler upon them (Without you having to manually invoke Rollup again or have multiple config files). This also allows embedding 3rd party dependencies inside workers with ease (Since dependencies are not natively shared between the host program and its workers).

Isn't this plugin inefficient?

Yes - running an entirely separate bundler on some of your source code is unavoidably a bit inefficient. If you're using named imports and have tree- shaking enabled, the duplicated code is minimal.

Usage

Host

//Imports
import {BlobWorker, spawn, Thread} from 'threads';
import WorkerText from './worker';

//Create a blob worker
const worker = await spawn(BlobWorker.fromText(WorkerText));

//Echo some text
console.log(await worker('Hello World!')); //Worker received: Hello World!

//Destroy the worker
await Thread.terminate(worker);

Worker

//Imports
import {expose} from 'threads';

//Expose the worker
expose((input: string) =>
{
  return `Worker received: ${input}`;
});

//Export (TypeScript only; replaced by bundled worker code)
export default '';

Rollup Config

//Imports
import threads from 'rollup-plugin-threads';

//Export
export default {
  //Point at the host program entry
  input: 'src/index.js',
  plugins: [
    //Other host Rollup plugins here
    threads({
      //Exclude worker files
      exclude: ['**/exclude-me/worker.js'],

      //Include worker files
      include: ['**/worker.js'],

      //Enable verbose logging (Simply prints what the child-bundler is bundling)
      verbose: true,

      //Other thread Rollup options here (eg: plugins)
    })
  ]
};

Package Sidebar

Install

npm i rollup-plugin-threads

Weekly Downloads

2

Version

1.2.0

License

MIT

Unpacked Size

8.46 kB

Total Files

9

Last publish

Collaborators

  • wakeful-cloud