Giter VIP home page Giter VIP logo

promise-throttle's Introduction

promise-throttle

A fork of this code accessible via npm is available at https://github.com/tiagostutz/fetch-throttle

This is a Javascript module that wraps a function to limit the rate at which that function is called. Although it can wrap any function, it is primarily intended for use with fetch() to call rate-limited web APIs. For example:

var throttle = require('promise-throttle');

var f = throttle(fetch, 5, 1000);
f('http://rest.example.com/').then(...);

Calling the wrapper function (f()) will defer calls to the wrapped function (fetch()) as needed to limit the call rate (5 calls per 1000 milliseconds). The wrapper function returns a Javascript Promise whose value is the result of the wrapped function.

Other throttle implementations limit the rate of invocation of the function argument. This is not guaranteed to work when calling web APIs with a rate limit. Because of variation in network propagation, rate limiting invocation at the client can still result in exceeding the rate at the server. For this reason, promise-throttle instead measures its rate using the completion time of the function argument, where completion is determined by converting the returned value to a Promise (using Promise.resolve()) and waiting for it to settle.

The strategy of using completion time does require that every Promise returned by the wrapped function should eventually resolve or reject. "Zombie" Promise instances that never settle will eventually clog the throttle queue. This can generally be addressed by adding a timeout to the wrapped function.

promise-throttle's People

Contributors

shoestringresearch avatar rhashimoto avatar

Stargazers

tjupp avatar Ng Kitt Horng, Zion avatar Anson Chen avatar Tiago de Oliveira Stutz avatar Divyanshu Maithani avatar

Watchers

 avatar  avatar

promise-throttle's Issues

I'd like to fork, maintain and publish it. What do you think?

Hi @rhashimoto ! I've just used this lib here and worked like a charm. Thanks for that, was really useful for me.

I saw in #1 that you don't have plans to maintain this project or publish a npm package, so I'd like to know whether it would be OK if I made a hard fork of this repo, publish this lib in npm and maintain the code.

If you agree with that, I'd ask you to put a MIT license here and to put a reference on README for the repo I will create.

On my repo I'll put a reference for you and your code in the top of the README and the project license will be MIT.

Any thoughts on that?

Thanks!

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.