Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
web-worker-helper
Advanced tools
Forked from @loaders.gl/worker-utils implementation
// fibonacci.js
export function fibonacci(n: number) {
let n1 = 1,
n2 = 1,
sum = 1;
for (let i = 3; i <= n; i += 1) {
sum = n1 + n2;
n1 = n2;
n2 = sum;
}
return sum;
}
// fibonacci.worker.js
import { createWorker } from 'web-worker-helper';
import { fibonacci } from './fibonacci';
createWorker(async (data: number) => {
const result = fibonacci(data);
return result;
});
import { WorkerFarm } from 'web-worker-helper';
export async function parseWorker(
workerName: string,
data: any,
options?: Record<string, any> = { maxConcurrency: 3, reuseWorkers: true }
) {
const url = getWorkerURL({ name: workerName });
// const source = `fibonacci codeString`
const workerFarm = WorkerFarm.getWorkerFarm({
maxConcurrency: options.maxConcurrency,
reuseWorkers: options.reuseWorkers,
});
const workerPool = workerFarm.getWorkerPool({ name: workerName, url });
// const workerPool = workerFarm.getWorkerPool({ name: workerName, source });
const job = await workerPool.startJob(workerName, (job, type, data) => job.done(data));
job.postMessage('process', { input: data });
const result = await job.result;
return result.result;
}
import { parseWorker } from './parse-worker';
import { fibonacci } from './fibonacci';
export async function starFibonacci(iskorker, data) {
if (iskorker) {
const result = await parseWorker('fibonacci-worker', data, {});
return result;
}
const result = await fibonacci(data);
return result;
}
FAQs
Utilities for running tasks on worker threads
We found that web-worker-helper demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.