No magic. No surprises. Minimal web framework for Deno.
Tabi (旅) means "journey" in Japanese. The shortest path between two points is a straight line. Tabi stays out of your way—no abstractions to fight, no magic to reverse-engineer, no surprises in production. Every build should be a stress free journey.
deno add jsr:@tabirun/appCreate main.ts:
import { TabiApp } from "@tabirun/app";
const app = new TabiApp();
app.get("/", (c) => {
c.text("Hello, world!");
});
Deno.serve(app.handler);Run it:
deno run --allow-all main.ts