1.0.1 • Published 6 years ago

parallel-throttle v1.0.1

Weekly downloads
2
License
MIT
Repository
github
Last release
6 years ago

Parallel Throttle

Throttle async task with parallel limitation.

Deprecation

This package is deprecated to prefer the new runs-limit-func package.

Installation

npm i parallel-throttle

Usage

const ParallelThrottle = require('parallel-throttle')

// every task is an async function without any argument
const tasks = [...]

const throttle = new ParallelThrottle({maxTasksInParallel: 100})

tasks.forEach(task => {
  throttle.add(task).then(...).catch(...)
})

License

MIT