Skip to content

Instantly share code, notes, and snippets.

View alexander-azizi-martin's full-sized avatar

Alexander Azizi-Martin alexander-azizi-martin

  • Ottawa, ON
View GitHub Profile
@alexander-azizi-martin
alexander-azizi-martin / README.md
Last active December 26, 2025 06:26
Kysely ORM

Overview

This library provides an API similar to drizzle's relations so that kysely can be used as an ORM.

Usage

interface Database {
  users: { id: number; name: string };
  posts: { id: number; user_id: number; title: string };