Ross ROSS = Recommend OSS · open-source software intelligence for agents

parallel-js/parallel.js

Easy multi-core processing utilities for Node. observed · 2026-08-28

github.com/parallel-js/parallel.js · JavaScript · MIT (permissive) observed · 2026-08-28

Health v2 · maintenance only

67/100

  • Activity 99
  • Release rhythm 8
  • Longevity 100
How is this computed?

round(0.45*activity + 0.35*rhythm + 0.20*longevity); archived -> min(score, 10) — computed 2026-09-02. Adoption (stars, forks) is never an input.

  • gap_med: n/a
  • age_days: 4952
  • days_rel: n/a
  • days_push: 7
  • n_releases_24m: 0

Full methodology

Adoption not part of the score

3246 stars · 197 forks observed · 2026-08-28

What it is AI-extracted, prompt v1, taxonomy v1, 2026-08-30, confidence not recorded

Parallel.js is a JavaScript library that simplifies parallel computing by running functions on worker threads in the browser (via Web Workers) and child processes in Node.js. It provides a chainable API for spawning parallel jobs over serializable data.

Use cases

  • run cpu-heavy javascript off the main thread
  • parallelize map operations over an array in node
  • use web workers without writing worker boilerplate
  • distribute computation across multiple cores
  • process large datasets concurrently in the browser

When to choose

  • you need simple multi-core processing in Node or the browser with a minimal chained API
  • your data is JSON-serializable and tasks are independent function calls

When to avoid

  • you need fine-grained control over worker pools, shared memory, or transferable objects
  • your functions rely on closures or non-serializable state, since data must be JSON-serializable
  • you need a modern, actively developed concurrency solution

Facets

library · maturity maintenance

concurrency serialization developer-tools web-development backend browser cross-platform parallel-computing web-workers child-processes multi-core chained-api nodejs javascript

1 source

Member repositories

RepositoryRoleHealth v2
parallel-js/parallel.jsmain67

For agents

markdown · JSON · MCP: product_card(name="parallel-js/parallel.js")

Data as of 2026-08-30T08:39:29.467469+00:00 · Report a problem