node-func-queue

JSON →
library 1.2.2 ·javascript deprecated
verified Jun 7, 2026

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.