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