Skip to main content
Module

x/fastro/examples/readme.md

Fast and simple web application framework for deno
Go to Latest
File

Examples

Quick Start

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

const server = new Fastro();

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

await server.listen();

You can see above basic example code here: hello.ts

Check the following codes to find out how to:

Middleware

Decorator

Plugin