Skip to main content

ci

Fastro

Fast, simple, minimalist web framework for Deno.

Inspired by Fastify & Express.

import { Fastro } from "https://deno.land/x/fastro/mod.ts";

const server = new Fastro();

server.get("/", (req) => req.send("root"));

await server.listen({ port: 8000 });

For other details, you can see in: examples.

Benchmarks

If performance is important to you, here are the benchmark results:

Framework Version Router? Avg Req
Abc 1.0.0-rc8 983
Deno http latest 2204.2
Express 4.17.1 494.3
Fastify 2.14.1 1402.7
Fastro latest 1462.5
Node http 14.3.0 1978.9
Oak 4.0.0 987.8

Check this to see the detail method & results: benckmarks