caddie
v0.3.1
Published
Build web apps with ease–Caddie is the web's friendliest framework
Downloads
11
Readme
caddie
A minimalist web framework that does nothing but be fast.
First, you need to install Bun
to use this framework.
Then, you can install caddie
easily using Bun's package manager:
bun install caddie
import { Caddie } from "caddie";
const app = new Caddie();
app.get("/", (req) => new Response(req.method));
app.start();
Warning: This is under construction and is currently a beta. Do not use in production.