kitopia
v0.1.0
Published
A high-performance, type-safe TypeScript web framework with a Rust core.
Downloads
2
Readme
- Extreme performance – Rust core optimized for extremely speed & efficiency. See the benchmarks.
- Type-safe – full TypeScript support with end-to-end safety and exceptional DX.
- Schema validation – built-in validation with zero bloat.
- Middleware system – composable and flexible like you expect.
- Cross-platform – runs on Node.js, Bun, and Deno.
🚀 Quick Start
You can add Kito to a project as follows:
pnpm add kitojs # Or: npm i kitojsMinimal Example
import { server } from "kitojs";
const app = server();
app.get("/", ctx => {
ctx.res.send("hello world!");
});
app.listen(3000);📚 Documentation
Full docs available at the official website. You can also explore ready-to-run examples.
🤝 Contributing
We welcome contributions! Check the contributing guide to learn how to set up your environment and submit pull requests.
📄 License
Licensed under the MIT License.
