Skip to main content
Module

x/fastro/bench/fastro.ts

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