Enabling Gzip Compression with Istio

Enabling Gzip Compression with Istio

We recently enabled gzip compression in front of one of our NestJS services using Istio, and the improvement was immediate. The biggest win was on larger JSON responses. Our API was returning payloads that were fairly repetitive and very compressible, so once gzip was...
End-to-End Type-Safe APIs with NestJS & oRPC

End-to-End Type-Safe APIs with NestJS & oRPC

Build type-safe APIs with NestJS and oRPC — define shared contracts with Zod, implement validated CRUD endpoints, and auto-generate OpenAPI docs in a Turborepo monorepo. Includes full-stack React frontend integration with TanStack Query for complete end-to-end type...
k6 Fundamentals: Load Test Your API with Confidence

k6 Fundamentals: Load Test Your API with Confidence

Everything you need to start load testing with k6. Covers the core concepts - virtual users, stages, checks, and thresholds - then puts them into practice by testing a live REST API. You'll learn how to define custom metrics, tag requests for granular analysis, use...
Implementing the Strategy Pattern in NestJS

Implementing the Strategy Pattern in NestJS

Writing Clean, Decoupled Code with the Strategy Pattern One of the biggest signs of a mature backend developer is understanding how to decouple high-level business logic from low-level implementation details. That’s exactly what the Dependency Inversion Principle...