Skip to main content
Module

x/fastro/benchmarks/fastro.ts

Fast and simple web application framework for deno
Go to Latest
File
import application from "https://deno.land/x/fastro@v0.51.0/server/mod.ts";const app = application();app.get("/", () => "Hello, World!");console.log("Listening on: http://localhost:8000");await app.serve();