1.0.2 • Published 2 years ago

promisejob v1.0.2

Weekly downloads
-
License
ISC
Repository
-
Last release
2 years ago

promisejob

A small utility for running promises in parallel with limiting running jobs.

Install

npm i promisejob

Usage

const promiseJob = new PromiseJob({maxParallel: 10});
// add some jobs
promiseJob.add(async () => {
   await fetch(...)
})
await promiseJob.run();
// all jobs are finished
1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago