Skip to main content
Module

x/fastro/examples/raw_json.ts

Full Stack Framework for Deno, TypeScript, Preact JS and Tailwind CSS
Go to Latest
File
import fastro from "$fastro/mod.ts";
const f = new fastro();
f.get("/", () => ({ text: "Hello json" }));
await f.serve();