Simple JavaScript (ES6) circuit breaker wrapper for functions returning Promises. No dependencies. Just plain ES6.
Module has configurable grace period, threshold and error message. It simply wraps any function that return promise.
More information about circuit breakers: Circuit Breakers
const circuitBreaker = require('simple-circuit-breaker')
function callBackend(url) {
return fetch(url)
.then(parseResponse)
}
const withCircuitBreaker = circuitBreaker(callBackend)
withCircuitBreaker('http://my.backend.com')
.then(doSomethingWithData, handleError)
Parameters
- asyncFn - Function that we want to guard with circuit breaker Must return a
Promise
- gracePeriodMs - How long do we wait before retrying after switched to OPEN state
- threshold - How many failures do we need to stop calling backend and start failing immediately
- message - This will be the error message in OPEN state
const withCircuitBreaker = circuitBreaker(callBackend, 15000, 3, 'Damn, it failed too many times!')
- gracePeriodMs = 3000
- threshold = 1
- message = 'Functionality disabled due to previous errors.'