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

x/fastro/docs/json.md

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

title: “Hello JSON” description: The application that return simple JSON image: https://fastro.deno.dev/fastro.png previous: hello-context next: route

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

const f = new fastro();

f.get("/", () => ({ text: "Hello json" }));

await f.serve();