Fastro
Fast and simple web application framework for deno.
With deno near-native perfomance, you can:
- Take advantage of existing Deno objects and methods
- Manage your routing cleanly
- Simplifies JSX and Multipage SSR Initiation
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