A new TypeScript Postgres query builder ↦
Martijn de Haan:
It’s been almost 3 years since I started working on this query builder idea of mine. Today is finally the day Mammoth hits 1.0. Mammoth is a no-batteries-included type-safe Postgres query builder for TypeScript. Hooray!
Congrats on shipping, Martijn! Here’s a peak at the API:
const rows = await db
.select(db.foo.id, db.bar.name)
.from(db.foo)
.leftJoin(db.bar)
.on(db.bar.fooId.eq(db.foo.id));
Discussion
Sign in or Join to comment or subscribe