npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

n8n-nodes-autoverse

v0.1.0

Published

AutoVerse — production-grade multitasking & parallel AI custom nodes for n8n. Phase 1: Parallel Task Runner with bounded concurrency, AIMD rate-limit awareness, per-task timeout, retry with exponential backoff, deterministic ordering and full failure isol

Readme

n8n-nodes-autoverse

Production-grade multitasking & parallel AI custom nodes for n8n.

Phase 1 (this release, v0.1.0): AutoVerse Parallel Task Runner.

Run incoming n8n items in parallel with a bounded worker pool, AIMD adaptive rate-limit reaction, per-task timeout, retry with exponential backoff, deterministic output ordering and full failure isolation.

Why

The n8n community forum is full of threads asking how to run LLM / HTTP calls in parallel without triggering 429 storms. Today the workaround is 8–15 nodes, sub-workflows, static-data counters and webhook callbacks. This node reduces all of that to a single step.

Install

Community-nodes settings inside n8n → npm Package Namen8n-nodes-autoverse

Or manually:

cd ~/.n8n/nodes
npm install n8n-nodes-autoverse

Node: AutoVerse Parallel Task Runner

| Option | Default | Meaning | |---|---|---| | Mode | http | http = URL/body per item, code = inline JS body | | Concurrency | 5 | max in-flight tasks | | Adaptive (AIMD on 429) | true | shrink on 429, grow on success streak | | Max Retries per Task | 2 | on top of first attempt | | Base Backoff (ms) | 500 | with full jitter | | Backoff Cap (ms) | 30 000 | | | Task Timeout (ms) | 60 000 | via per-task AbortController | | Max Execution Time (ms) | 0 (disabled) | global deadline; remaining items become skipped:deadline | | Output Ordering | input | input (preserved) or completion (fastest first) | | Emit summary item | true | adds { __autoverse_summary: metrics } at the end |

Output per item

{
  "__autoverse": {
    "index": 0,
    "status": "success | failed | skipped",
    "attempts": 1,
    "durationMs": 234,
    "retried": false,
    "skipReason": null,
    "error": null
  },
  "input":  { ... original item json ... },
  "output": { ... task result ... }
}

Summary item

{
  "__autoverse_summary": {
    "totalTasks": 100,
    "successful": 97,
    "failed": 2,
    "skipped": 1,
    "retries": 6,
    "rateLimits": 4,
    "timeouts": 2,
    "cancelled": false,
    "concurrencyRequested": 10,
    "concurrencyFinal": 5,
    "totalDurationMs": 2410,
    "averageDurationMs": 218,
    "adaptive": true
  }
}

Benchmark

100 tasks × 200 ms simulated work:

| Scenario | Duration | Speed-up | |---|---|---| | Sequential (n8n Loop Over Items today) | 20.05 s | 1.00× | | Parallel concurrency=10 | 2.01 s | 9.99× | | Parallel + 20% 429 + AIMD | 2.41 s | 8.32× | | Parallel + failures + timeouts | 2.55 s | 7.91× |

License

MIT

Roadmap

  • v0.2 — AutoVerse Batch LLM (OpenAI / Anthropic / Gemini / Groq Batch APIs, 50% discount).
  • v0.3 — AutoVerse Smart Cache & Router (prompt caching + model routing).

See ARCHITECTURE.md and PHASE-1-REPORT.md.