
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Koreaโs Lazarus Group, designed to steal credentials and deploy backdoors.
@sapphire/ratelimits
Advanced tools
Table of Contents
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.
You can use the following command to install this package, or replace npm install
with your package manager of choice.
npm install @sapphire/ratelimits
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'
.
// 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
// 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
For the full API documentation please refer to the TypeDoc generated documentation.
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 With | Address |
---|---|
Open Collective | Click Here |
Ko-fi | Click Here |
Patreon | Click Here |
PayPal | Click Here |
Thanks goes to these wonderful people (emoji key):
This project follows the all-contributors specification. Contributions of any kind welcome!
FAQs
Bucket implementation for Ratelimits.
We found that @sapphire/ratelimits demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago.ย It has 0 open source maintainers collaborating on the project.
Did you know?
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.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Koreaโs Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.