npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

profuse

v1.2.3

Published

promise-based circuit breaker

Downloads

19

Readme

profuse

Profuse is an implementation of the "circuit breaker" pattern, using promises instead of callbacks. It's written in typescript so you can use type-safe checks if you want to (but you don't have to).

A "circuit breaker" wraps a remote call (for example, to a database or a REST service), watching for exceptions. If too many exceptions happen, the breaker trips.

Once tripped, all calls will fail immediately. After a while, the breaker will move into probation mode, where a single success will reset it back to normal mode, or a single failure will cause it to trip again. This allows failing remote services to "fail fast" and stops your client from pummeling them while they're down.

Usage

const breaker = new CircuitBreaker("database", { tripRate: 0.95 });
breaker.do(() => {
  return db.getUser(userId);
}).then(user => ... );

The options are documented in profuse.ts.

There is also a callback version, if you aren't comfortable with promises yet, or are targeting older platforms. The syntax is a bit more confusing because of the inside-out nature of callbacks: It accepts a function that takes a callback, and your callback.

const breaker = new CircuitBreaker("database", { tripRate: 0.95 });
breaker.doCallback(cb => fs.open(path, flags, cb), (error, file) => {
  // do things with file
});

If you prefer, you can use the lower-level API:

const breaker = new CircuitBreaker("database", { tripRate: 0.95 });
breaker.tryStart();  // throws an exception if the circuit breaker has tripped
fs.open(path, flags, (error, file) => {
  breaker.registerResult(error == null);
  // do things with file
});

Logic

In normal mode, trip if:

  • less than X percent (tripRate) of the last N requests (window) succeeded
  • too many (maxConcurrent) concurrent requests (may indicate a too-long or missing timeout)

In tripped mode, go into probation if:

  • time has passed (checkInterval)

In probation mode:

  • any successful request: go back to normal mode
  • any failed request: go back to tripped mode

Build

$ npm i
$ npm test

License

Apache 2 (open-source) license, included in LICENSE.txt.

Authors

@robey - Robey Pointer [email protected]