High-performance, minimalist web framework for Deno
Fastro combines extreme performance with an elegant API. Built for high-throughput services without the boilerplate.
- Blazing Fast: Reaches near-native Deno speeds (Benchmarks).
- Zero Dependency Core: Minimalist engine with no external dependencies.
- Zero Friction: Return JSON, strings, or Responses directly.
- Built to Scale: Automatic module loading.
- Rock Solid: 100% core test coverage.
Quick Start

Build a high-performance API in seconds with zero boilerplate.
import Fastro from "https://deno.land/x/fastro/mod.ts";
const app = new Fastro();
app.get("/user/:id", (req, ctx) => {
return { id: ctx.params.id, status: "active" };
});
await app.serve({ port: 8000 });Resources

Explore our comprehensive documentation, benchmarks, and community ecosystem.
- Docs – Comprehensive guide and API reference.
- Middlewares – Official plugins and community ecosystem.
- Showcase – Real-world examples built with Fastro.
- Benchmarks – Performance comparisons and results.
- Contribute – Join us in building the future of Deno.