Skip to main content
Module

x/fastro/examples/hello.ts

Fast and simple web application framework for deno
Go to Latest
File
import { Fastro } from "../mod.ts";const server = new Fastro();server.get("/", (req) => req.send("root"));await server.listen();