Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/boywithkeyboard-archive/cheetah1

A framework for the modern web. (NO LONGER MAINTAINED)
https://github.com/boywithkeyboard-archive/cheetah1

cheetah cloudflare cloudflare-workers deno deno-deploy fast framework javascript modern router secure-by-default typescript

Last synced: 4 months ago
JSON representation

A framework for the modern web. (NO LONGER MAINTAINED)

Awesome Lists containing this project

README

        







cheetah



ðŸ›Ąïļ secure × 💎 simple × ðŸŠķ light



> [!WARNING]
> cheetah is currently **not maintained**.


### Sneak Peek ðŸ‘ū

```ts
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](https://cheetah.mod.land) or [join our Discord](https://discord.gg/2rCya9EWGv) to learn more.


---


A big thank you goes to












Build fast stores and increase sales.

---


### Release Schedule 🗓ïļ

We strictly adhere to [SemVer](https://semver.org) 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](https://github.com/azurystudio/cheetah/blob/dev/contributing.md)
first.