Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

x/fastro/docs/hello.md

Full Stack Framework for Deno, TypeScript, Preact JS and Tailwind CSS
Latest
File

title: “Hello World” description: The application for creating a simple route image: https://fastro.deno.dev/fastro.png previous: structure next: hello-context

import fastro from "https://fastro.deno.dev/mod.ts";

const f = new fastro();

f.get("/", () => "Hello, World!");

await f.serve();