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

polallel

v1.1.0

Published

JS library to perform operations in parallel

Downloads

314

Readme

polallel

JS library to perform operations in parallel

============

This library makes it easy to execute operations in parallel

Usage

$ npm install --save polallel
...

import { rxParallel } from 'polallel'


async function asyncOperation(element: any, arg1: string, args2: number): Promise<any> {
    ...
}

async function example(): Promise<void> {
  try {
    const listOfArguments = [...Array(20).keys()];
    const examples: any[] = await rxParallel(listOfArguments, asyncOperation, 5, 2 ["arg1", 4]);
    console.log("examples", examples);
  } catch (error) {
    console.log(error.message);
  }
}

example()

Functions

parallel

The parallel function is used to call an asynchronous operation for each element of the array with the possibility of indicating the number of concurrent executions and retries for each element.

USAGE

import { parallel } from 'polallel'


async function asyncOperation(element: any, arg1: string, args2: number): Promise<any> {
    ...
}

async function example(): Promise<void> {
  try {
    const listOfArguments = [...Array(20).keys()];
    const examples: any[] = await parallel(listOfArguments, asyncOperation, 5, 2, ["arg1", 4]);
    console.log("examples", examples);
  } catch (error) {
    console.log(error.message);
  }
}

OPTIONS

/**
 * @param  {T[]} elements
 * @param  {(element:T,...parameters:any)=>Promise<K>} asyncOperation
 * @param  {number=10} concurrencyLimit
 * @param  {number=0} retryLimit
 * @param  {any[]=[]} parameters
 * @returns Promise
 */

parallelAll

The parallelAll function is used to call an asynchronous operation for each element of the array and retries for each element

USAGE

import { parallelAll } from 'polallel'


async function asyncOperation(element: any, arg1: string, args2: number): Promise<any> {
    ...
}

async function example(): Promise<void> {
  try {
    const listOfArguments = [...Array(20).keys()];
    const examples: any[] = await parallelAll(listOfArguments, asyncOperation, 2, ["arg1", 4]);
    console.log("examples", examples);
  } catch (error) {
    console.log(error.message);
  }
}

OPTIONS

/**
 * @param  {T[]} elements
 * @param  {(element:T,...parameters:any)=>Promise<K>} asyncOperation
 * @param  {number=0} retryLimit
 * @param  {any[]=[]} parameters
 * @returns Promise
 */

parallelBatches

The parallelBatches function is used to call an asynchronous operation for each element of the batch array

USAGE

import { parallelBatches } from 'polallel'


async function asyncOperation(element: any, arg1: string, args2: number): Promise<any> {
    ...
}

async function example(): Promise<void> {
  try {
    const listOfArguments = [...Array(20).keys()];
    const examples: any[] = await parallelBatches(listOfArguments, asyncOperation, 5, 2, ["arg1", 4]);
    console.log("examples", examples);
  } catch (error) {
    console.log(error.message);
  }
}

OPTIONS

/**
 * @param  {T[]} elements
 * @param  {(element:T,...parameters:any)=>Promise<K>} asyncOperation
 * @param  {number=10} batchesLimit
 * @param  {number=0} retryLimit
 * @param  {any[]=[]} parameters
 * @returns Promise
 */

rxParallel

The rxParallel function is used to call an asynchronous operation for each element of the array with the possibility of indicating the number of concurrent executions and retries for each element. This function uses reactive extensions and return a Observable

USAGE

import { rxParallel } from 'polallel'


async function asyncOperation(element: any, arg1: string, args2: number): Promise<any> {
    ...
}

rxParallel(listOfArguments, asyncOperation, 5 , 3, ["arg1", 4]).subscribe(console.log);

OPTIONS

/**
 * @param  {T[]} elements
 * @param  {(element:T,...parameters:any)=>Promise<K>} asyncOperation
 * @param  {number=10} concurrencyLimit
 * @param  {number=0} retryLimit
 * @param  {any[]=[]} parameters
 * @returns Observable
 */

rxAsyncParallel

The rxAsyncParallel function is used to call an asynchronous operation for each element of the array with the possibility of indicating the number of concurrent executions and retries for each element. This function uses reactive extensions

USAGE

import { rxAsyncParallel } from 'polallel'


async function asyncOperation(element: any, arg1: string, args2: number): Promise<any> {
    ...
}

async function example(): Promise<void> {
  try {
    const listOfArguments = [...Array(20).keys()];
    const examples: any[] = await rxAsyncParallel(listOfArguments, asyncOperation, 5, 2, ["arg1", 4]);
    console.log("examples", examples);
  } catch (error) {
    console.log(error.message);
  }
}

OPTIONS

/**
 * @param  {T[]} elements
 * @param  {(element:T,...parameters:any)=>Promise<K>} asyncOperation
 * @param  {number=10} concurrencyLimit
 * @param  {number=0} retryLimit
 * @param  {any[]=[]} parameters
 * @returns Promise
 */

rxAsyncParallelAll

The rxAsyncParallelAll function is used to call an asynchronous operation for each element of the array and retrieves for each element. This function uses reactive extensions

USAGE

import { rxAsyncParallelAll } from 'polallel'


async function asyncOperation(element: any, arg1: string, args2: number): Promise<any> {
    ...
}

async function example(): Promise<void> {
  try {
    const listOfArguments = [...Array(20).keys()];
    const examples: any[] = await rxAsyncParallelAll(listOfArguments, asyncOperation, 2, ["arg1", 4]);
    console.log("examples", examples);
  } catch (error) {
    console.log(error.message);
  }
}

OPTIONS

/**
 * @param  {T[]} elements
 * @param  {(element:T,...parameters:any)=>Promise<K>} asyncOperation
 * @param  {number=0} retryLimit
 * @param  {any[]=[]} parameters
 * @returns Promise
 */

Imports

Can be imported directly from the function type to exclude native or reactive

USAGE

// rxParallel use reactive extensions
import { rxParallel } from 'polallel/lib/reactive'

// import native functions with promises
import { parallel, parallelAll, parallelBatches } from 'polallel/lib/native'

Retries

There are other helper functions to retry asynchronous functions or synchronous functions

  • retryPromise
  • retryFunction
USAGE

import { retryPromise } from 'polallel'

Other

There are other helper functions

  • parallelAllRequired: all executions in parallel must be successful otherwise it will fail
  • rxAsyncParallelAll: all execution using reactive extension with asynchronous return
  • rxAsyncParallel: execution using reactive extension with asynchronous return
USAGE

import { parallelAllRequired } from 'polallel'