v1.0.9

The Fast, Simple, and Scalable Web Framework for Deno

Fastro

build Coverage Status

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

Create a high-performance server with zero friction:

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" };
});

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

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

Resources