Fastro
Fast, unopinionated, minimalist web framework for deno
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 });
Example
You can see above basic example code here: hello.ts
Check the following source code to find out how to: