Skip to main content
Module

x/fastro/examples/hello_world_flash.ts

Fast and simple web application framework for deno
Go to Latest
File
import application from "../server/mod.ts";
const app = application({ flash: true });
app.get("/", () => new Response("Hello flash"));
await app.serve();