Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

clerx

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

clerx

The Clerical Rx Suite

  • 1.1.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
11
increased by450%
Maintainers
1
Weekly downloads
 
Created
Source

clerx 💁

A Timely Suite of RxJS Operators and Observables

Install

npm install clerx

Try out the example

Operators

rateLimiter(count, slidingWindowTime)

Defer sending events if count events occur within slidingWindowTime. Optionally, stop deferring if the wait time goes past timeoutDue.

Examples

Only two events within three seconds

abcdef--g---

> rateLimiter(2, 3000)

ab-cd-ef-g--

rate-limiter

Only one event within five seconds

-(abc)def

> rateLimiter(1, 5000)

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

rate-limit-five-tick

Observables

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

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

event--{ dueTime }--|

Delay 5 seconds after emitting an event

> postDelay("a", 5000)

a----|

post-delay

Keywords

FAQs

Package last updated on 09 Aug 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc