Socket
Socket
Sign inDemoInstall

parallel-fn

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

parallel-fn

A small utility to prevent certain (perhaps costly) functions from being called in parallel up to a limit.


Version published
Weekly downloads
173
increased by183.61%
Maintainers
1
Weekly downloads
 
Created
Source

parallel-fn

A small utility to prevent certain (perhaps costly) functions from being called in parallel up to a limit.

Usage
const parallelWrappedFn = parallelFn(
  taskFn,
  maxParallelism
)

taskFn must return a promise and will receive the same context and arguments it is called with

Example
const parallelFn = require('parallel-fn')

const taskFn = async function (a, b, c) {
  const result = await someHeavyDatabaseCall(a, b, c)
  // do some work
  const something = result.map(() => ...)
  return something
}

const parallelDbFn = parallelFn(taskFn, 4)

/* elsewhere */

const longList = [1, 2, 3, 4, ... 100]

longList.forEach(async (item) => {
  const result = await parallelDbFn('a', 'b', item)
  console.log(result)
})

In the above example all 100 calls will be put into a queue and parallel-fn will ensure that only 4 will be running at any point

Installation
$ npm install parallel-fn

Running the tests

The tests use async/await so a modern (>= v8.0.0) node version should be used

make test
make test-coverage

FAQs

Package last updated on 15 Aug 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc