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

arc-promise-queue

v1.0.0

Published

Small library for controlling parallelism at scale

Readme

PromiseQueue*

*this readme was AI generated

A lightweight concurrency control utility for managing active promises with a fixed limit.

This utility ensures that only a specified number of promises are active at once. Excess promises are queued and activated as earlier ones settle. Designed for high-throughput or rate-limited async environments.


✨ Features

  • Limit concurrent promise execution (e.g., max 5 at once)
  • Queue additional promises until slots free up
  • Adjustable polling interval for smooth async scheduling
  • Works with resolved and rejected promises alike
  • Simple, dependency-free design

📦 Installation

npm install arc-promise-queue

🧩 Class: PromiseQueue

Constructor

const q = new PromiseQueue();

setAllowedActive(count: number): void

Sets the maximum number of concurrently active promises.

q.setAllowedActive(5); // allow 5 promises at a time

setAddPause(ms: number): void

Sets how often the queue checks for free slots (in milliseconds).

q.setAddPause(10); // check every 10ms

addToQueue(promise: Promise<any>): Promise<void>

Adds a promise to the queue. Resolves once the promise has been accepted into the active pool.

const task = fetch(url);
await q.addToQueue(task);

Note: The queue does not wait for the promise to finish—it only ensures the concurrency limit.


getLengthOfQueue(): number

Returns the number of active promises currently being tracked.

console.log(q.getLengthOfQueue()); // e.g., 3

settleQueued(): Promise<void>

Resolves when all currently queued and active promises have settled.

await q.settleQueued(); // Wait for everything to finish

🧪 Example Usage

import PromiseQueue from 'arc-promisequeue';

const q = new PromiseQueue();
q.setAllowedActive(2);
q.setAddPause(5);

const tasks = Array.from({ length: 5 }, (_, i) =>
  q.addToQueue(
    new Promise((resolve) => {
      console.log('Start', i);
      setTimeout(() => {
        console.log('Finish', i);
        resolve();
      }, 50);
    })
  )
);

await Promise.all(tasks);
await q.settleQueued();
console.log('All done!');

Output:

Start 0
Start 1
Finish 0
Start 2
Finish 1
Start 3
Finish 2
Start 4
Finish 3
Finish 4
All done!

⚙️ Behavior Notes

  • The queue monitors completion internally, freeing slots automatically.
  • You can enqueue any kind of promise (fetches, I/O, or computations).
  • addToQueue() returns as soon as the promise is accepted, not when it finishes.
  • Ideal for APIs with rate limits, background tasks, or throttled pipelines.

✅ Testing

Comprehensive Jest tests are included. Run:

npm test

📄 License

This project is released under The Unlicense, placing it in the public domain.