The Problem
Every Node.js rate limiting solution I tried had the same issue — Redis in the hot path.
Request comes in → middleware → network call to Redis → wait → process. That's 5-20ms added to every single request. At scale, this becomes a real problem.
What I Built
Pace runs a Rust native addon directly inside your Node.js process via napi-rs.






