v1.0.13

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.

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.