v1.2.2 — A lightweight Node.js queue library that supports sequential, persistent, and concurrent execution of functions with custom callback error handling. Released in 2012 (last update 2013), it provides createQueue for sequential tasks, createPersistentQueue for re-runnable tasks, and createConcurrentQueue for parallel keyed queues. Unlike modern promise-based queues (e.g., Bull, async.queue), it uses a callback-driven API where each step manually delivers results or errors. Suitable for simple Node.js callback patterns but outdated compared to promise/async alternatives.
npm install func-queueNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Demonstrates creating a sequential queue with error handling and dynamic task appending.
Migrate to a modern queue library like async.queue, Bull, or p-queue.
Only call add() before execute() or use append() during execution.
Always provide both callbacks to avoid fallback to error callback with null parameter.
Use: const queue = require('func-queue');Move add() calls before execute() or use append() to add tasks during execution.
Run: npm install func-queue
No dependency data recorded yet.