https://github.com/ashu11-a/kython
Fast and low overhead web framework
https://github.com/ashu11-a/kython
bun deno framework framework-http http http-requests http-server node nodejs
Last synced: about 1 year ago
JSON representation
Fast and low overhead web framework
- Host: GitHub
- URL: https://github.com/ashu11-a/kython
- Owner: Ashu11-A
- License: gpl-3.0
- Created: 2024-12-24T21:24:16.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-01-11T22:50:36.000Z (over 1 year ago)
- Last Synced: 2025-01-11T23:33:07.314Z (over 1 year ago)
- Topics: bun, deno, framework, framework-http, http, http-requests, http-server, node, nodejs
- Language: TypeScript
- Homepage:
- Size: 35.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
- License: LICENSE
Awesome Lists containing this project
README
# Kython






## š | Description
This project was born from the idea of creating a native framework for Bun, Deno, or Node, aiming to be faster than alternatives like Fastify or Express. Iām working to achieve this goal, but for now, this project is just an experiment. I do not recommend using it in production, and no support is available.
## ā | How to use
```ts
import { Kython, Router } from './src/index'
const server = new Kython()
server.get('/', (_request, response) => {
response.send('Hello world')
})
new Router({
path: '/exemple',
methods: {
get(_request, response) {
response.json({ hello: 'world' })
}
}
})
server.listen(3000, '0.0.0.0')
```