Why KadakORM
KadakORM is The Best path from first query to production scale.
Why KadakORM
KadakORM is The Best ORM experience for developers who want speed, clarity, and production honesty.
What makes KadakORM Kadak
- You write less code to do real work.
- You keep full SQL control when needed.
- You get validators from your schema, not from extra setup.
- You get production controls when traffic grows.
The Kadak standard
- Simple first.
- Production ready second.
- Never patronising.
- Always honest.
What this means in practice
import { connect, table } from '@shyk/kadak-orm'
const users = table('users', {
id: 'id',
email: 'email',
name: 'text',
})
const db = connect('postgres://postgres:postgres@localhost:5432/kadak_demo', { users })
const row = await db.users.insert({ email: 'kadak@example.com', name: 'Kadak Dev' })
console.log(row)Important: KadakORM keeps the happy path small, and the advanced path explicit.