v1.0.6

⚡ Fastro Framework

build Coverage Status

Fastro

The Fast, Simple, and Scalable Web Framework for Deno

Fastro is engineered for developers who refuse to compromise. It combines extreme performance with an elegant API, allowing you to build high-throughput microservices and web applications without the friction of traditional frameworks.

✨ Why Fastro?

🏁 Quick Start

import Fastro from "https://deno.land/x/fastro/mod.ts";

const app = new Fastro();

// Simple GET with URL parameters
app.get("/user/:id", (req, ctx) => {
  return { id: ctx.params.id, status: "active" };
});

// Powerful middleware
app.use((req, ctx, next) => {
  console.log(`${req.method} ${ctx.url.pathname}`);
  return next();
});

await app.serve({ port: 8000 });

📚 Resources