Documentation
Complete guide to building with CNZR Framework
Installation
Quick Start
terminal
npx cnzr new my-appcd my-appnpm installnpm run dev
Manual Installation
terminal
npm install cnzr
Quick Start
server.js
import { CenzeroApp } from 'cnzr';
const app = new CenzeroApp();
// Modern context-based handler
app.get('/', (ctx) => {
return ctx.json({ message: 'Hello CNZR!' });
});
app.listen(3000);