UNPKG

workerpool

Version:

Offload tasks to a pool of workers on node.js and in the browser

12 lines (6 loc) 160 B
import { pool } from '..' async function run() { const p = pool('./worker.js') const res = await p.exec('add', [2, 3]) const b = res +2 }