Skip to main content
Deno 2 is finally here 🎉️
Learn more

High-performance, minimalist web framework for Deno

Fastro

build Coverage Status

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

Fastro 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

Fastro Resources

Explore our comprehensive documentation, benchmarks, and community ecosystem.

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