2.4.9 • Published 2 days ago

@sapphire/ratelimits v2.4.9

Weekly downloads
479
License
MIT
Repository
github
Last release
2 days ago

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):

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

2.4.9

4 months ago

2.4.8

5 months ago

2.4.7

8 months ago

2.4.6

1 year ago

2.4.5

2 years ago

2.4.4

2 years ago

2.4.3

2 years ago

2.4.2

2 years ago

2.4.1

2 years ago

2.4.0

2 years ago

2.1.12

2 years ago

2.1.11

2 years ago

2.3.0

2 years ago

2.3.1

2 years ago

2.2.0

2 years ago

2.1.9

2 years ago

2.1.10

2 years ago

2.1.8

2 years ago

2.1.7

3 years ago

2.1.6

3 years ago

2.1.5

3 years ago

2.1.4

3 years ago

2.1.3

3 years ago

2.1.2

3 years ago

2.1.1

3 years ago

2.1.0

3 years ago

2.0.1

3 years ago

2.0.0

3 years ago

1.2.5

3 years ago

1.2.4

3 years ago

1.2.3

3 years ago

1.2.2

3 years ago

1.2.1

3 years ago

1.2.0

3 years ago

1.1.8

3 years ago

1.1.7

3 years ago

1.1.6

3 years ago

1.1.5

3 years ago

1.1.4

3 years ago

1.1.3

3 years ago

1.1.2

3 years ago

1.1.1

3 years ago

1.1.0

3 years ago

1.0.1

4 years ago

1.0.0

4 years ago