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 🙏

© 2024 – Pkg Stats / Ryan Hefner

queue-batch

v1.0.3

Published

Basic batch processing queue library

Downloads

1,104

Readme

queue-batch

A minimalistic queue processor which emits events.

Example

var Processor = require('queue-batch');

var longRunningFunction = (item, next) => {
    console.log('got a new item to process');
    console.log(item);
    setTimeout(next, 1000);
};

var processor = new Processor(longRunningFunction);
processor.on('error', (error) => {
    console.error('an error occured', error);
});
processor.on('empty', () => {
    console.log('queue exhausted');
});

processor.push('item');
processor.push('one', 'two');
processor.concat([1, 2, 3]);

Which will output

got a new item to process
item
got a new item to process
one
got a new item to process
two
got a new item to process
1
got a new item to process
2
got a new item to process
3

Then after a second or so

queue exhausted

API

new Processor(callback, concurrency = 10, queue = []);

  • callback: function(item, next: function(error)) is a required function which will be invoked for each item pushed or concated to the processor.
  • currency: ?int is an optional positive integer, decribing the number of concurrent items can be handled by the callback.
  • queue: ?Array is an optional array. If specified the items will automatically be added to the queue and the processor will start working.

Creates a new batch processor with a handler callback, optional concurrency limit and queue. The batch processor is an EventEmitter and will emit an empty even, when the queue has been completed. If at any point the callback function returns an error to the next callback option the error event will be emitted on the processor object.

Processor.prototype.push(item1[, item2[, ...itemn]]);

  • item1 ... itemn each argument provided will be push onto the queue. If the batch processor is not running at the concurrency limit the first item will immediately start getting processed.

Processor.prototype.concat(array);

  • `array' is an array of items to push onto the queue one after the other.

This has the same effect as processor.push(array[0], ... , array[n]); or array.forEach((item) => processor.push(item));

Processor.prototype.on(eventName, handler);

  • eventName: 'error' | 'empty' the event to which you wish to attach a handler
  • handler: function the desired handler function.

Events

error - processor.on('error', function (error) { });

Emitted if an errors has been reported back via the processor callback function through the next callback.

var errorCallback = (item, next) => {
    if (item === 2) { return next('2 is an exceptional number'); }
    next();
};
var processor = new Processor(errorCallback);
processor.on('error', (error) => {
    console.error(error); // outputs '2 is an exceptional number'
});

empty - processor.on('empty', function () { });

Emitted when the queue no longer contains any items.