Tag: rate-limiting
-

Create API Rate Limiting with Token Bucket 🪣
In this article, we will explore the Token Bucket algorithm and its implementation in Node.js for API rate limiting, in very simple terms. Rate limiting is what stops a single client, or a burst of traffic, from overwhelming your server, and the token bucket is one of the most widely used ways to do it.…