Skip to main content
Module

x/fastro/examples/json_response_default.ts

Fast and simple web application framework for deno
Go to Latest
File
import application from "../server/mod.ts";
const app = application();
const json = { text: "Hello world" };
app.get("/", () => json);
console.log("Listening on: http://localhost:8000");
await app.serve();