Product
Socket Now Supports uv.lock Files
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
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.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.
Security News
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.