1.0.0 • Published 8 years ago

simple-circuit-breaker v1.0.0

Weekly downloads
3
License
MIT
Repository
github
Last release
8 years ago

simple-circuit-breaker

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

Usage

Basic usage with defaults

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)

Passing configuration options

Parameters

  1. asyncFn - Function that we want to guard with circuit breaker Must return a Promise
  2. gracePeriodMs - How long do we wait before retrying after switched to CLOSED state
  3. threshold - How many failures do we need to stop calling backend and start failing immediately - HALF OPEN
  4. message - This will be the error message in OPEN state
const withCircuitBreaker = circuitBreaker(callBackend, 15000, 3, 'Damn, it failed too many times!')

Default values

  • gracePeriodMs = 3000
  • threshold = 1
  • message = 'Functionality disabled due to previous errors.'
1.0.0

8 years ago

0.2.3

9 years ago

0.2.2

9 years ago

0.2.1

9 years ago

0.2.0

9 years ago

0.1.0

9 years ago