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

mu-queue

v0.4.2

Published

A simple event driven, managed queue system.

Downloads

15

Readme

Mu-Queue

A simple queue management system.

Overview

The Mu-Queue system runs off of creating queues that hold jobs. When a queue is executed it is non-blocking, waiting for the event loop before running.

Creating A Queue

Creating a new queue is simple. Simply call the Mu-Queue object, and give it a string. If the queue exists it returns the queue, if it doesn't it creates the queue then returns it.

const queue = require('mu-queue');
queue('myQueue');

Creating a Job

Jobs are the backbone of the Mu-Queue system. A job is a function that accepts two parameters. an object, data and a function, next. Next must be called at the end of the function to advance the queue and accepts an optional parameter, err. If you want to end the queue immediately, use data.done().

queue('myQueue').addJob('Job1', (data, next) => {
  data.value.old = data.value;
  data.value = 'This job is awesome!';
  data.done();
  next();
});

Running The Queue

To run the queue, we simply use it's run() method. it accepts an options object that you can add a data property and pass the queue data upon running. It also accepts an optional method, callback. It accepts two parameters, err and results.

queue('myQueue').run({
  data:'Some random input!', 
  callback: (err, results) => {
    if (err) console.log(err);
    console.log(results)
  });

Interval

Queues can also be created that run on an interval. This is also an example of how Queue methods can be chained together.

const queue = require('mu-queue');
queue('timeQueue', {interval: 4000})
  .addJob('Job1', (data, next) => {
    console.log('It\'s been 4 seconds!');
    next(null, data.done());
  })
  .start({
    data: {foo:'bar'}, 
    callback: (err, results) => {
      console.log('Queue Complete');
    }
  );