Skip to content

Matt-Esch/choke

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

choke

Function call throttling with hook for cancelling

browser support

Example

var choke = require("choke")
var EventSource = require("eventsource-reconnect")
var setInterval = require("timers").setInterval

var source = new EventSource("http://localhost:1234/events")
var reconnect = choke(source.reconnect, 15000)

source.onopen = reconnect.cancel    // kill any outstanding reconnect attempts

setInterval(function ()) {
    if (source.readyState === source.CLOSED) {
        source.onclose = reconnect.listener // throttle reconnects to 15 secs
    }
}, 1000)

Installation

npm install choke

Contributors

  • Matt-Esch

MIT Licenced

About

Rate limit a function call, and cancel waiting calls

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published