Skip to main content
The Deno 2 Release Candidate is here
Learn more

YADWF

Yet another Deno web-framework

Initial setup

import { YADWF } from "https://deno.land/x/yadwf@v0.2/mod.ts";

const app = new YADWF();

app.get("/", (ctx) => ctx.text("Hello World!"));

app.start({ port: 1337 });