Skip to main content
Module

x/fastro/examples/string_response.ts

Full Stack Framework for Deno, TypeScript, Preact JS and Tailwind CSS
Latest
File
import fastro from "$fastro/mod.ts";
const f = new fastro();
f.get("/", () => new Response("Hello world"));
await f.serve();