Skip to main content

Fastro

Build Status - Cirrus deno doc

A dinosaur is looking back.

Fast and simple web application framework for deno.

With deno near native performance, you can:

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