Fastro
Fast and simple web application framework for deno.
With deno near native performance, you can:
- Leverage existing Deno objects and methods such as Request, Headers, Cookie, and URLPattern
- Manage your app and routing cleanly with builder pattern
- Simplifies the complex steps of React Server Side Rendering
Getting started
Create a main.ts
file for deno-cli entry point.
import fastro from "https://deno.land/x/fastro/server/mod.ts";
const f = fastro();
f.get("/", () => "Hello, World!");
await f.serve();
Run the app
deno run -A --unstable main.ts
Examples
Find one that fits your use case here: https://github.com/fastrodev/fastro/tree/main/examples