Made for developers who are obsessed with simplicity and maximum performance.
It is inspired by Express, Fastify and Firebase.
Quick Start
import { Fastro } from "https://raw.fastro.dev/master/mod.ts";
const server = new Fastro();
server.get("/", (req) => req.send("root"));
await server.listen();
deno run --allow-net https://raw.fastro.dev/master/examples/hello.ts