Throttled parallel function invocation queue for Node.js and the browser. Version 0.4.0 (latest) is stable but unmaintained; last release in 2012. Provides a simple API to process items with a concurrency limit, supporting drain, empty, and error events.
npm install breeze-queueNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Creates a queue with concurrency 2, pushes 3 items with autostart, and sets a drain listener.
Set autostart to true in push() or call queue.process() after pushing items.
Include autostart: true in the new push call or call .process() again.
Consider migrating to async.queue or other actively maintained queue libraries.
Use: var queue = Queue(iterator, concurrency);
Use a bundler like Browserify or Webpack, or use the component version.
Assign event handler functions directly to properties: queue.drain = function() {};No dependency data recorded yet.