3.28.0 • Published 4 months ago

native-promise-pool v3.28.0

Weekly downloads
1,189
License
Artistic-2.0
Repository
github
Last release
4 months ago

Create a pool of a specified concurrency that accepts functions that return promises

npm

jspm

<script type="module">
    import * as pkg from '//dev.jspm.io/native-promise-pool'
</script>

This project provides its type information via inline JSDoc Comments. To make use of this in TypeScript, set your maxNodeModuleJsDepth compiler option to 5 or thereabouts. You can accomlish this via your tsconfig.json file like so:

{
  "compilerOptions": {
    "maxNodeModuleJsDepth": 5
  }
}

Usage

API Documentation.

Table Example

Table Example Preview.

Table Example Source.

Simple Example

Simple Example Preview.

Simple Example Source.

Await Example

Await Example Preview.

Await Example Source.

Finally

This package depends on Promise.prototype.finally existing, which it does on Node v10 and above.

On older environments, you can provide compatibility via two methods.

By passing PromiseClass:

const pool = require('native-promise-pool').create({
    concurrency: 2,
    PromiseClass: require('bluebird')
})

Or by adding direct support to the builtin Promise class:

require('promise.prototype.finally').shim()
const pool = require('native-promise-pool').create({concurrency: 2})

Discover the release history by heading on over to the HISTORY.md file.

Discover how you can contribute by heading on over to the CONTRIBUTING.md file.

These amazing people are maintaining this project:

No sponsors yet! Will you be the first?

These amazing people have contributed code to this project:

Discover how you can contribute by heading on over to the CONTRIBUTING.md file.

Unless stated otherwise all works are:

and licensed under:

3.28.0

4 months ago

3.27.0

4 months ago

3.20.0

6 months ago

3.22.0

5 months ago

3.24.0

5 months ago

3.26.0

5 months ago

3.21.0

5 months ago

3.23.0

5 months ago

3.25.0

5 months ago

3.19.0

3 years ago

3.18.0

3 years ago

3.17.0

3 years ago

3.16.0

3 years ago

3.15.0

4 years ago

3.14.0

4 years ago

3.13.0

4 years ago

3.12.0

4 years ago

3.11.0

4 years ago

3.10.0

4 years ago

3.9.0

4 years ago

3.8.0

4 years ago

3.7.0

4 years ago

3.6.0

4 years ago

3.4.0

4 years ago

3.5.0

4 years ago

3.3.0

4 years ago

3.2.0

4 years ago

3.1.0

4 years ago

3.0.0

4 years ago

2.3.0

4 years ago

2.2.0

4 years ago

2.1.0

4 years ago

2.0.0

4 years ago

1.2.0

4 years ago

1.1.0

4 years ago

1.0.0

5 years ago

0.0.1

5 years ago