Skip to main content
Module

x/fastro/benchmarks/fastro.ts

Fast and simple web application framework for deno
Go to Latest
File
import { Fastro, FastroError } from "../mod.ts";const server = new Fastro();const port = 3000;server.get("/", (req) => req.send("hello"));await server.listen({ port }, (err, addr) => { console.log("fastro listening on:", port);});