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

simple-series-parallel

v1.0.1

Published

A minimalist utility module for running functions in series or parallel

Downloads

3

Readme

Simple-Series-Parallel

A minimalist utility module for running async functions in series or parallel

Build Status NPM version Coverage Status

This module is currently supported only on NodeJS.

Installation

$ npm install simple-series-parallel

Usage

Require the module

var sp = require('simple-series-parallel');

.series (array, callback)

  • @param {Array} array of functions or an array of arrays. Each array with the function, context and arguments.
  • @param {Function} callback on complete with the results array or error

.parallel (array, callback)

  • @param {Array} array of functions or an array of arrays. Each array with the function, context and arguments.
  • @param {Function} callback on complete with results array or error

Executes an array of functions in series or parallel. The result of each function is pushed to the final results array. Each function is assumed to have a callback with standard nodeJS parameters of error and result. If there is an error the program terminates and return with the error.

If you just want to use the array of function then use the bind function to pre-apply the context and arguments if any. You could also use a array for each function with the function, its context and arguments if any. Please see the examples below for variosu usage patterns.

Examples

Tale of three timers - no arguments passed in. Running three timers in series.

Example: simple-series.js:

"use strict";

var sp = require('simple-series-parallel');
//tale of three timers

//delay 100ms
function simpleTimer1(callback) {
    setTimeout(function () {
        callback(null, 1);
    }, 100);
}

//delay 600ms
function simpleTimer2(callback) {
    setTimeout(function () {
        callback(null, 2);
    }, 600);
}


//delay 200ms
function simpleTimer3(callback) {
    setTimeout(function () {
        callback(null, 3);
    }, 200);
}

//array of three functions
//no callbacks
//callbacks will be inserted at run time with the
//node callback function signature function(err, res)
var fns = [
    simpleTimer1,
    simpleTimer2,
    simpleTimer3
];

sp.series(fns, function (err, res) {
    if (err)throw err;

    //result is an array of all results
    //[1, 2, 3]
    console.log(res);//will print [1, 2, 3]
});

Running three timers in parallel.

Example: simple-parallel.js:

sp.parallel(fns, function (err, res) {
    if (err)throw err;

    //result is an array of all results
    //[1, 3, 2]
    console.log(res);//will print [1, 3, 2]
});

IP Lookup of three sites - passing in the host names as arguments.

Arguments pre-applied using bind

Example: simple-series-args-1.js:

"use strict";

var dns = require('dns'),//https://nodejs.org/dist/latest-v4.x/docs/api/dns.html
    sp = require('simple-series-parallel');

//bind in the arguments
var fns = [
    dns.lookup.bind(null, 'www.google.com'),
    dns.lookup.bind(null, 'www.yahoo.com'),
    dns.lookup.bind(null, 'www.bing.com')
];

sp.series(fns, function(err, res){
   if(err) throw err;
    
    //prints [ '74.125.239.148', '206.190.36.45', '204.79.197.200' ]
    console.log(res);
});

IP Lookup of three sites - passing in the host names as arguments.

Arguments passed in with function name and context

Example: simple-series-args-2.js:

"use strict";

var dns = require('dns'),//https://nodejs.org/dist/latest-v4.x/docs/api/dns.html
    sp = require('simple-series-parallel');

//passing in an array = [function, context, host name]
var fns = [
    [dns.lookup, null, 'www.google.com'],
    [dns.lookup, null, 'www.yahoo.com'],
    [dns.lookup, null, 'www.bing.com']
];


sp.series(fns, function(err, res){
    if(err) throw err;
    console.log(res);
});

Testing

$ npm test

Compiling to ES5

$ npm run compile

Authors

  • Jayesh Wadhwani

License

(The MIT License)

Copyright (c) 2016 Jayesh Wadhwani

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.