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

developit/workerize

🏗️ Run a module in a Web Worker. observed · 2026-08-28

github.com/developit/workerize · homepage · JavaScript observed · 2026-08-28

Health v2 · maintenance only

23/100

  • Activity 0
  • Release rhythm 8
  • Longevity 100

Flags: no_license

How is this computed?

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

  • gap_med: n/a
  • age_days: 3158
  • days_rel: n/a
  • days_push: 2008
  • n_releases_24m: 0

Full methodology

Adoption not part of the score

4378 stars · 87 forks observed · 2026-08-28

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

Workerize is a tiny (~800 byte) JavaScript library that moves a module into a Web Worker and exposes its exported functions as asynchronous proxies via a built-in RPC layer. It lets you offload blocking or expensive computations to a background thread while calling them naturally with async/await.

Use cases

  • run expensive computations in a web worker without blocking the ui thread
  • call worker functions like normal functions using async/await
  • offload cpu-intensive loops or parsing to a background thread
  • avoid manually writing worker message-passing boilerplate
  • create a worker from a function or string of code at runtime

When to choose

  • you want a minimal, dependency-free way to run a module in a web worker
  • you prefer runtime worker creation from code strings over build-time bundling
  • you want exported functions automatically proxied as async calls

When to avoid

  • you use webpack and want module bundling with dependencies - use workerize-loader instead
  • you need shared memory, transferable objects, or advanced worker features
  • you need a library under active development - the project has had no releases since 2021

Facets

library · maturity maintenance

rpc concurrency developer-tools web-development frontend developer-tools browser web-worker threading async-proxy rpc tiny-library javascript nodejs

3 sources

Member repositories

RepositoryRoleHealth v2
developit/workerizemain23

For agents

markdown · JSON · MCP: product_card(name="developit/workerize")

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