Skip to main content

Built on top of Deno Standard Modules.

Highly inspired by:

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