Skip to main content

Made for developers obsessed with simplicity and maximum performance.

Built on top of Deno Standard Modules.

Inspired by Express, Fastify, and Firebase.

Check the benchmark results for comparison.

Quick Start

Hello example:

import { Fastro } from "https://raw.fastro.dev/master/mod.ts";
const server = new Fastro();
server.get("/", (req) => req.send("root"));
await server.listen();

Run the example using Deno directly:

deno run --allow-net https://raw.fastro.dev/master/examples/hello.ts

Table of contents