cheetah
cheetah copied to clipboard
A framework for the modern web. (NO LONGER MAINTAINED)
cheetah
ðĄïļ secure
à ð simple
à ðŠķ light
[!WARNING] cheetah is currently not maintained.
Sneak Peek ðū
import cheetah from 'https://deno.land/x/cheetah/mod.ts'
import { z } from 'https://deno.land/x/zod/mod.ts'
const app = new cheetah()
.post('/', {
body: z.object({ // < scheme validation
name: z.string()
})
}, async c => {
const body = await c.req.body()
return `Hey, ${body.name}!` // < response body
})
app.serve() // < launch app
â Please read our guide or join our Discord to learn more.
Release Schedule ðïļ
We strictly adhere to SemVer and post updates weekly.
-
â current (e.g. v0.1.0)
The current channel is dedicated to stable releases and is safe for use in production.
-
â canary (e.g. v0.1.0-canary.0)
The canary channel is meant for pre-releases that lack features for a stable release or contain features that are still a prototype. These releases are not suited for production and only meant for testing purposes.
Contributing ð
We appreciate your help! ð
To contribute, please read our contributing guidelines first.