A lightweight, scalable queue for managing parallel callbacks in Node.js, similar to d3-queue but without accumulating results in memory. The current stable version is 1.6.6, released with a focus on minimal overhead and support for callback-based concurrency. It ships TypeScript definitions and works with Node >=0.8. A key differentiator is its lack of result accumulation, making it suitable for fire-and-forget parallel tasks where you only need to know when all tasks complete or receive an error.
npm install queue-cbNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Creates a queue, defers two async tasks, and waits for all to complete without accumulating results.
Manually accumulate results inside callbacks or use a library with result accumulation.
Wrap each task's callback to collect all errors if needed.
Use `import { Queue } from 'queue-cb'` for ESM or `const Queue = require('queue-cb')` for CommonJS.No dependency data recorded yet.