cheetah

A framework for the modern web. (NO LONGER MAINTAINED)
GitHub
192
Created 2 years ago, last commit a year ago
7 contributors
437 commits
Stars added on GitHub, month by month
0
0
0
N/A
N/A
N/A
1
2
3
4
5
6
7
8
9
10
11
12
2024
Stars added on GitHub, per day, on average
Yesterday
=
Last week
0.0
/day
Last month
0.0
/day
Last 12 months
0.0
/day
README


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.