Most teams pick Express because they've always picked Express. It's familiar, battle-tested, and surrounded by a rich ecosystem of middleware. But per-request overhead in Express is measurably higher than in modern alternatives, and 2026 benchmarks make that gap impossible to ignore.
When your SaaS platform is processing thousands of API calls per second, that overhead compounds fast. This guide gives you a clear, honest comparison so you can make a decision grounded in real trade-offs, not habit or hype.
Key Takeaways
| Point | Details |
|---|---|
| Fastify's performance edge | Fastify consistently outperforms Express in per-request benchmarks, ideal for high-throughput APIs |
| NestJS adapter flexibility | NestJS 11 runs on both Express v5 and Fastify — modularity and upgrade options |
| Express v5 migration caution | Switching to Express v5 in NestJS introduces breaking changes in routing and query parsing |
| Scalability is architectural | Real-world scalability depends more on modular design than raw framework speed |
| Decision should fit your team | Balance benchmarks with developer preferences and organizational context |
How Express, NestJS, and Fastify Handle HTTP Performance
Express has been the backbone of Node.js web development for over a decade. Its middleware model is simple and supported by an enormous plugin library. But simplicity has a cost — Express processes each request through a middleware chain without the low-level optimization that newer frameworks have built in from day one.
Fastify uses a schema-based approach to route handling and serialization, which means JSON responses are compiled ahead of time rather than computed on each request. In 2026, Fastify averages around 15,000–18,000 req/s on a simple JSON endpoint, while a comparable Express implementation averages roughly 10,000–12,000 req/s. The gap is real and reproducible.
NestJS is a meta-framework — it doesn't handle raw HTTP itself. It wraps another engine (Express by default) and layers structured architecture on top. NestJS v11 ships with Express v5 as its default adapter. You can swap to the Fastify adapter using @nestjs/platform-fastify, getting NestJS's architecture with a much faster HTTP engine underneath.
Performance Comparison at a Glance
| Framework | ~req/s (simple JSON) | P99 latency | Architecture |
|---|---|---|---|
| Express v5 | 10,000–12,000 | Higher | Linear middleware chain |
| NestJS (Express adapter) | 10,000–12,000 | Higher | Meta (Express) |
| NestJS + Fastify adapter | ~15,000–18,000 | Lower | Meta (Fastify) |
| Pure Fastify | ~15,000–18,000 | Lower | Schema-driven |
Key points:
- Fastify's schema-based serialization is the primary driver of its throughput advantage
- Express's middleware model introduces per-request overhead that scales with chain length
- NestJS's performance is almost entirely determined by which adapter it uses
- "Hello world" benchmarks measure framework overhead, not application performance
Pro tip: Don't benchmark a hello-world endpoint and call it done. Build a representative stub of your actual API — including at least one database query and one auth check — and measure that. The numbers will tell a more honest story.
NestJS in 2026: Architecture, Adapters, and the New Express v5 Default
NestJS is built around three core ideas: modules, dependency injection (DI), and adapters. Modules define feature boundaries. DI lets you inject services without manual wiring. Adapters make NestJS framework-agnostic at the HTTP level.
The big change in 2026: NestJS v11 defaults to Express v5. Express v5 is not a drop-in replacement for v4.
Key Breaking Changes in Express v5 Under NestJS 11
-
Named wildcards required. The old
*wildcard no longer works — use named patterns like*splat - Query string parsing changed. Nested objects and arrays from URLs may parse differently
- Error handling middleware requires four arguments explicitly, even if unused
- Path matching is stricter, and trailing slashes are handled differently by default
- Response finalization has subtle changes affecting middleware chain termination
Express v5 vs Fastify Adapter
| Factor | Express v5 | Fastify adapter |
|---|---|---|
| Raw throughput | Lower | Higher |
| Migration complexity | Lower | Medium |
| Plugin ecosystem | Very large | Growing |
| Schema validation | Manual | Built-in (JSON Schema) |
| Community support | Very mature | Strong and growing |
Pro tip: Before switching adapters in an existing NestJS project, audit every middleware and plugin. Some Express-specific packages have no direct Fastify equivalent, and discovering that mid-migration is painful.
Scaling Strategies: What Actually Matters in Production
Raw HTTP throughput is only one dimension of scalability. In production SaaS, bottlenecks are almost never the framework. They're in your database queries, caching strategy, dependency graph, and module separation.
What commonly goes wrong in high-throughput SaaS:
- Global shared state in singleton services not designed for concurrent access
- Non-isolated dependency graphs where a slow service blocks unrelated request paths
- Missing interceptors for request tracing, making latency spikes hard to diagnose
- Guards hitting the database on every request without caching — auth becomes a bottleneck
- Synchronous middleware where async patterns would release the event loop faster
"The teams that scale cleanly aren't always using the fastest framework. They're using the one they understand deeply enough to instrument, tune, and debug under pressure."
NestJS's module system genuinely helps here. When each feature is encapsulated in its own module, a payments module under heavy load doesn't share state with your notifications module.
Pro tip: Build your observability layer before you hit production. Add request ID propagation, structured logging, and latency histograms from day one.
Making the Choice: Five Questions That Cut Through the Noise
1. What is your team's current expertise?
If your engineers know Express deeply, the productivity cost of switching may outweigh the throughput gain.
2. Is your workload genuinely throughput-constrained?
For most SaaS APIs, the bottleneck is not the framework. If p99 latency is driven by database queries, switching from Express to Fastify won't fix it.
3. Do you need strong architectural conventions?
Solo developers can self-enforce structure. Growing teams benefit from NestJS's guardrails.
4. Are you migrating or starting fresh?
Express v5's breaking changes under NestJS 11 are subtle but real. They require careful testing.
5. What does your operational environment look like?
Serverless functions with cold-start sensitivity benefit from Fastify's lower overhead.
Framework Selection Checklist
- [ ] Run benchmarks on a representative endpoint, not a hello-world stub
- [ ] Document every third-party middleware and plugin your app depends on
- [ ] Check Fastify plugin compatibility if considering an adapter swap
- [ ] Test wildcard routes and query string parsing if upgrading to Express v5
- [ ] Profile your actual bottlenecks before attributing latency to the framework
- [ ] Get team buy-in on the architectural conventions your chosen framework enforces
- [ ] Plan your observability and monitoring strategy before launch
What Most Framework Comparisons Miss in 2026
Benchmarks are a starting point, not a destination. Teams spend weeks optimizing framework choice only to discover the primary latency driver was an unindexed database column.
Migration risk is consistently underestimated. Express v5's breaking changes are subtle enough that they won't always surface in your test suite. Named wildcards, query parsing differences, and stricter path matching produce bugs that only appear under specific traffic conditions.
Developer experience matters more than most benchmarks measure. A framework your team understands deeply, can debug confidently, and extend without fear is worth more than marginal throughput gains.
The honest truth: all three frameworks can power a successful SaaS product. The difference lies in how much friction you'll encounter as your team grows and traffic scales.
Whichever framework you choose, you need engineers who know it deeply in production. If you're scaling a Node.js backend team, Meduzzen pre-vets backend engineers for production-depth knowledge — 48-hour shortlist, named profiles before you sign.
FAQs
Which framework is fastest for simple HTTP requests in 2026?
Fastify achieves the highest throughput and lowest latency, consistently outperforming Express. Real-world performance depends on your middleware stack and workload shape.
Can NestJS use Fastify instead of Express in 2026?
Yes. NestJS 11 supports both Express v5 and Fastify as adapters. The Fastify adapter is the recommended path for throughput-sensitive applications.
What breaking changes does Express v5 bring under NestJS 11?
Named wildcard routes are now required, and default query parameter parsing behavior has changed — both can introduce subtle bugs in existing route handlers.
Are benchmarks reliable for choosing between these frameworks?
Treat published benchmarks as directional signals, not final verdicts. Real-world performance depends on workload shape, middleware, and team familiarity.
Top comments (0)