Skip to main content
Deno 2 is finally 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 });