https://fastro.deno.dev/fastro.png previous: hello-context next: route
title: “Hello JSON” description: The application that return simple JSON image:import fastro from "https://fastro.deno.dev/mod.ts";
const f = new fastro();
f.get("/", () => ({ text: "Hello json" }));
await f.serve();