f-throttle

0.1.1 • Public • Published

f-throttle Build Status Dependency Status

Limit concurrency of a function returning a promise.

Usage

var throttle = require("f-throttle")
var throttledFn = throttle(concurrency, anyFn)

throttleFn functions like anyFn, but throttled to a concurrency of concurrency, where concurency is a number equal or higher than one.

Notes

  • throttledFn returns a promise.
  • anyFn must return a promise. If it does not, the promise returned by throttledFn will be rejected.
  • You may pass any number of arguments
  • Function context is preserved, so can work for when throttling a function that's a method for an object.
  • When you throttle a function to a concurrency of 1, this results in execution in a serial fashion.

Credits

The initial structure of this module was generated by Jumpstart, using the Jumpstart Black Coffee template.

License

f-throttle is released under the MIT License.
Copyright (c) 2013 Meryn Stol

Readme

Keywords

none

Package Sidebar

Install

npm i f-throttle

Weekly Downloads

2

Version

0.1.1

License

MIT

Last publish

Collaborators

  • meryn