Author: Sarthak Negi
-

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.…
-

Ship Faster, Fix Less: A Guide to Continuous Testing
Before I jump into Continuous Testing, let’s touch base on what testing is, along with how and when it plays a crucial role. Testing phase provides you with feedback which will help you determine if further changes are needed. Faster feedback is better for you. Why? Because by going down the wrong road too far,…