1.0.2 • Published 6 years ago

limitor v1.0.2

Weekly downloads
3
License
Apache-2.0
Repository
github
Last release
6 years ago

npm PRs Welcome Open Source Love License

⏱ Limitor

A Future based rate limiter utility.

Use in combination with parallel to ensure rate limits are not exceeded.

Install

yarn add limitor

Usage

import limitor from 'limitor'
import { of, parallel } from 'fluture'

/**
 * This example demonstrates how to group an array
 * of futures and ensure only the limit is executed
 * every second.
 * 
 * Below, the first 2 futures will resolve instantly
 * and 1 second later the next 2 will resolve.
 */

const futures = [of(1), of(1), of(2), of(2)]
const limit = 2 // max 2 per second

const limited = limitor (futures) (limit)

parallel(Infinity, limited).fork(console.error, console.log)
1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago