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 🙏

© 2026 – Pkg Stats / Ryan Hefner

clerx

v2.0.2

Published

The Clerical Rx Suite

Readme

clerx 💁

A Timely Suite of RxJS Operators and Observables

Install

npm install clerx

Try out the example

Operators

As defined in the RxJS docs:

Operators are the essential pieces that allow complex asynchronous code to be easily composed in a declarative manner. Operators are functions.

rateLimiter(count, slidingWindowTime)

Defer sending events if count events occur within slidingWindowTime (milliseconds). Optionally, stop deferring if the wait time goes past timeoutDue. Returns an Observable.

Examples

Only send two events within three seconds

In this example, only 2 (count) events are sent during a 3 second (3000 ms slidingWindowTime) sliding window. As displayed in the marble diagram, additional events beyond 2 events in the sliding window will be deferred.

abcdef--g---

> rateLimiter(2, 3000)

ab-cd-ef-g--

rate-limiter

Only one event within five seconds

Similarly, this example limits events to one (count) event in a five second (5000 ms slidingWindowTime) window. The marble diagram shows how the events are distributed over time.

-(abc)def

> rateLimiter(1, 5000)

-a----b----c----d----e----f----

rate-limit-five-tick

Observables

As defined in the RxJS docs:

Observables are lazy Push collections of multiple values.

postDelay(event: T, dueTime): Observable<T>

Creates an observable that emits the event then waits dueTime (milliseconds) before closing the observable, like so:

event--{ dueTime }--|

Example: Delay 5 seconds after emitting an event

> postDelay("a", 5000)

a----|

post-delay

intervalBackoff(backoff: number): Observable<number>

Creates an Observable that emits sequential numbers in an exponentially increasing interval of time. backoff is the starting time interval, in milliseconds, and will exponentially increase with each event.

Example: Exponentially increase delay starting at a one second interval

The marble diagram illustrates the exponentially growing duration between events.

> intervalBackoff(1000)

01-2---3-------4---------------5

interval-backoff