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

@sapphire/ratelimits

Package Overview
Dependencies
Maintainers
3
Versions
902
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@sapphire/ratelimits

Bucket implementation for Ratelimits.

  • 1.2.5
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
3.7K
increased by45.36%
Maintainers
3
Weekly downloads
ย 
Created
Source

Sapphire Logo

@sapphire/ratelimits

Bucket implementation for Ratelimits.

GitHub codecov npm bundle size npm Depfu

Table of Contents

Description

There is often a need to apply ratelimits to protect a network from excessive traffic levels on connections routed through it. This package offers two different techniques in the same implementation: the simple Token Bucket, and the more complex Leaky Bucket.

Features

  • Written in TypeScript
  • Bundled with Rollup so it can be used in NodeJS and browsers
  • Offers CommonJS, ESM and UMD bundles
  • Fully tested

Installation

You can use the following command to install this package, or replace npm install with your package manager of choice.

npm install @sapphire/ratelimits

Usage

Note: While this section uses require, the imports match 1:1 with ESM imports. For example const { Bucket } = require('@sapphire/ratelimits') equals import { Bucket } from '@sapphire/ratelimits'.

Token Bucket

// Import the Bucket class
const { Bucket } = require('@sapphire/ratelimits');

// Define a bucket with 1 usage every 5 seconds
const bucket = new Bucket().setDelay(5000);

console.log(bucket.take(420)); // -> 0
console.log(bucket.take(420)); // -> 5000

Leaky Bucket

// Import the Bucket class
const { Bucket } = require('@sapphire/ratelimits');

// Define a bucket with 2 usages every 5 seconds
const bucket = new Bucket().setLimit({ timespan: 5000, maximum: 2 });

console.log(bucket.take(420)); // -> 0
console.log(bucket.take(420)); // -> 0
console.log(bucket.take(420)); // -> 5000

API Documentation

For the full API documentation please refer to the TypeDoc generated documentation.

Buy us some doughnuts

Sapphire Community is and always will be open source, even if we don't get donations. That being said, we know there are amazing people who may still want to donate just to show their appreciation. Thank you very much in advance!

We accept donations through Open Collective, Ko-fi, PayPal, Patreon and GitHub Sponsorships. You can use the buttons below to donate through your method of choice.

Donate WithAddress
Open CollectiveClick Here
Ko-fiClick Here
PatreonClick Here
PayPalClick Here

Contributors โœจ

Thanks goes to these wonderful people (emoji key):


Jeroen Claassens

๐Ÿ’ป ๐Ÿš‡ ๐Ÿ“† ๐Ÿ“– โš ๏ธ

Antonio Romรกn

๐Ÿ’ป ๐Ÿ“† ๐Ÿ‘€ โš ๏ธ

Gryffon Bellish

๐Ÿ’ป ๐Ÿ‘€ โš ๏ธ

Vlad Frangu

๐Ÿ’ป ๐Ÿ› ๐Ÿ‘€ ๐Ÿ““ โš ๏ธ

Soumil07

๐Ÿ’ป ๐Ÿ“† โš ๏ธ

depfu[bot]

๐Ÿšง

allcontributors[bot]

๐Ÿ“–

Tyler J Russell

๐Ÿ“–

Ivan Lieder

๐Ÿ’ป ๐Ÿ›

Hezekiah Hendry

๐Ÿ’ป

Stitch07

๐Ÿ’ป โš ๏ธ

Vetlix

๐Ÿ’ป

Ethan Mitchell

๐Ÿ“–

Elliot

๐Ÿ’ป

Jurien Hamaker

๐Ÿ’ป

Charalampos Fanoulis

๐Ÿ“–

dependabot[bot]

๐Ÿšง

Kaname

๐Ÿ’ป

nandhagk

๐Ÿ›

This project follows the all-contributors specification. Contributions of any kind welcome!

Keywords

FAQs

Package last updated on 27 Jun 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