Installation
Prerequisites
Tabi requires Deno 2.0 or later.
# Install Deno (macOS/Linux)
curl -fsSL https://deno.land/install.sh | sh
# Install Deno (Windows)
irm https://deno.land/install.ps1 | iexVerify your installation:
deno --versionInstall Tabi
Add Tabi to your project:
deno add @tabirun/appThis adds Tabi to your deno.json imports and you're ready to start building.
Verify Installation
Create a simple main.ts to verify everything works:
import { TabiApp } from "@tabirun/app";
const app = new TabiApp();
app.get("/", (c) => {
return c.text("Hello, Tabi!");
});
Deno.serve(app.handler);Run it:
deno run --allow-net main.tsVisit http://localhost:8000 and you should see "Hello, Tabi!"
Next Steps
Head over to Getting Started to build your first real application.