Api

14 articles

backend5 min read

No Rate Limiting — One Angry User Can Take Down Your API

A user sends 10,000 requests per minute to your API. No rate limiting. Your server CPU spikes to 100%. Your database runs out of connections. Every other user sees 503s. One script can take down your entire service — and it happens more often than you think.

Read →
nodejs6 min read

Introducing reixo - The TypeScript HTTP Client That Replaces axios

reixo is a TypeScript-first HTTP client for Node.js, browsers, and edge runtimes. It bundles retries, circuit breaking, request deduplication, OpenTelemetry tracing, typed error returns, offline queuing, caching, and more — zero dependencies. Here's why it's the HTTP client of 2026.

Read →
python4 min read

Getting Started with FastAPI - The Future of Python APIs

FastAPI is taking the Python world by storm. It's faster than Flask, easier than Django REST Framework, and comes with automatic docs out of the box. In this guide, we'll build a complete REST API from scratch using FastAPI.

Read →