Skip to main content
Module

x/fastro/hello.ts

Fast and simple web application framework for deno
Go to Latest
File
import { Fastro,} from "https://deno.land/x/fastro/mod.ts";
const server = new Fastro();
server.route({ method: "GET", url: "/", handler: (req) => req.send("hello"),});
await server.listen({ port: 8000 });