cheetah

A framework for the modern web.

README

undefined

cheetah


🛡️ secure× 💎 simple× 🪶 light

Warning

cheetah is currently not maintained.

Sneak Peek 👾


  1. ``` ts
  2. import cheetah from 'https://deno.land/x/cheetah/mod.ts'
  3. import { z } from 'https://deno.land/x/zod/mod.ts'

  4. const app = new cheetah()
  5.   .post('/', {
  6.     body: z.object({ // < scheme validation
  7.       name: z.string()
  8.     })
  9.   }, async c => {
  10.     const body = await c.req.body()

  11.     return `Hey, ${body.name}!` // < response body
  12.   })

  13. app.serve() // < launch app
  14. ```

❔ Please read our guide or join our Discord to learn more.

A big thank you goes toundefinedBuild fast stores and increase sales.

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 productionand only meant for testing purposes.

Contributing 😘


We appreciate your help! 💕

To contribute, please read our contributing guidelines first.