Skip to main content
Module

x/fastro/examples/hello_world_fastro.ts

Fast and simple web application framework for deno
Go to Latest
File
import application from "../server/mod.ts";import { HttpRequest, HttpResponse } from "../server/types.ts";
const app = application();
app.get( "/", (_req: HttpRequest, res: HttpResponse) => res.status(200).send("Hello fastro"),);
await app.serve();