Documentation

Complete guide to building with CNZR Framework

Installation

Quick Start

terminal
npx cnzr new my-app
cd my-app
npm install
npm 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);