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 });
Yet another Deno web-framework
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 });