A type-safe active record Node ORM model layer.
Built on Kysely, with syntax and usage inspired by Laravel's Eloquent ORM.
Simple active record pattern
const pet = await Pet.findOrFail(1);
pet.name = "Fluffy";
await pet.save();
A type-safe active record Node ORM model layer.
Built on Kysely, with syntax and usage inspired by Laravel's Eloquent ORM.
const pet = await Pet.findOrFail(1);
pet.name = "Fluffy";
await pet.save();