TutorialEdge Tutorials
Set up a Rust project, learn async basics with Tokio, and build a working reverse proxy that forwards HTTP requests to a …
Add a routing layer to your Rust API gateway so it forwards requests to different backend services based on URL path …
Build a composable middleware system in Rust using traits, implementing logging, CORS, and custom header injection for …
Implement a token bucket rate limiter as middleware for your Rust API gateway, protecting backends by tracking requests …
Add round-robin load balancing to your Rust API gateway, with background health checks that automatically remove …
Move your Rust API gateway config into YAML and add JWT-based authentication middleware to protect your backend …
In this project series, we are going to be building a fully functional API gateway from scratch in Rust! We'll cover …