Skip to main content
Module

x/fastro/examples/hello_world.ts

Fast and simple web application framework for deno
Go to Latest
File
import fastro from "../server/mod.ts";
const f = fastro();
f.get("/", () => new Response("Hello world"));
await f.serve();