Mammoth
yarn add @ff00ff/mammoth
A (mostly) type-safe Postgres query builder for TypeScript. This is not for the front-end, but for the back-end.
Features
- Type-safe query builder.
- Supports Postgres only.
- Excellent autocomplete.
- Transactions.
- Automatic migration generation based on changes to your schema.
- Connection pooling.
- Automatic camelCase to snake_case conversion.
- CLI.
Quick start
const rows = await db
.select(db.list.id, db.list.createdAt)
.from(db.list)
.where(db.list.createdAt.gt(now().minus(`2 days`)).or(db.list.value.eq(0)))
.limit(10);
A select should not require declaring an additional interface explicitly.
The type of rows is automatically derived from the table. You do not have to specify this. For example, column value
with type INTEGER
is not declared NOT NULL
and thus is null
or number
.
const rows: {
id: string;
name: string;
createdAt: Date;
value: number | null;
}[];
Db is under active development. Some things work, but some things are a bit weird and will improve in the coming months.
Create
To create a table. Using db migrations generate
you can generate migrations of your tables and db migrations apply
applies the migrations in your database. When you applied the migrations, change your tables and generate your migrations again, a new migration file with only the changes is created. See Migrations section for more info.
class List {
id = new UuidColumn().primary().notNull().default(new UuidGenerateV4());
createdAt = new TimestampWithTimeZoneColumn().notNull().default(new Now());
name = new TextColumn().notNull();
value = new IntegerColumn();
}
class ListItem {
id = new UuidColumn().primary().notNull().default(new UuidGenerateV4());
createdAt = new TimestampWithTimeZoneColumn().notNull().default(new Now());
listId = new UuidColumn().notNull().references<Database>(db => db.list.id);
name = new TextColumn().notNull();
}
Update
To update rows.
const numberOfUpdates = await db
.update(db.list)
.set({
name: `New Name`
})
.where(db.list.id.eq(`acb82ff3-3311-430e-9d1d-8ff600abee31`));
Insert
To insert a row.
const numberOfRows = await db
.insertInto(db.list)
.values({
id: null,
createdAt: null,
name: `My List`,
});
You do need to explicitly set all values. The return type is automatically handled.
const list = await db
.insertInto(db.list)
.values({
id: null,
createdAt: null,
name: `My List`,
})
.returning(`id`, `createdAt`, `name`);
When using returning()
the return value is automatically changed from an integer (number of affected rows) to an object or array of objects with keys matching the columns specified.
Transactions
You can call db.transaction(callback)
which begins a transaction and depending on the promise you return in the transaction will commit or rollback the transaction.
Best practice is to shadow your database variable, generally db
, so you do not mistakenly execute queries outside the transaction.
const list = await db.transaction(db => {
const list = await db
.insertInto(db.list)
.values({
id: null,
createdAt: null,
name: `My List`,
})
.returning(`id`);
await db
.insertInto(db.listItem)
.values({
id: null,
createdAt: undefined,
listId: list.id,
name: `My Item`,
});
return list;
});
Migrations
The idea is to automatically generate migrations based on the changes in your tables. A rough first version of the CLI is working, but it's picky about you project structure:
- It expects your db instance to be at
src/db.ts
. - It writes your migrations to
migrations/
.
For example, in src/db.ts
:
import { createDatabase, UuidColumn, TextColumn, IntegerColumn } from '@ff00ff/mammoth';
class Test {
id = new UuidColumn().primaryKey().notNull().default(new UuidGenerateV4());
name = new TextColumn().notNull();
value = new IntegerColumn();
}
export const db = createDatabase({
test: new Test(),
});
export type Database = typeof db;
It's a best practice to place your tables in src/tables
instead of directly in src/db.ts
.
db migrations generate
should read your tables in src/tables
, read your migrations and generate a new migration based on the changes between them.
Raw queries
When a new keyword is introduced in Postgres which you want to use badly but is not supported in this library yet, you can always fall back to raw sql. You can mix the type-safe functions with raw sql:
db.select(db.account.id)
.from(db.account)
.append `MAGIC NEW ORDER BY`;
SELECT account.id FROM account MAGIC NEW ORDER BY
You can also write raw sql completely. This is not advised, obviously, because it defeats the whole purpose of this library.
const result = await db.sql `SELECT * FROM account WHERE account.name = ${name}`;
Column data type
Class | Data type |
---|
TextColumn | TEXT |
CitextColumn | CITEXT |
CaseInsensitiveTextColumn | CITEXT |
IntegerColumn | INTEGER |
DecimalColumn | DECIMAL |
SerialColumn | SERIAL |
JSONColumn | JSON |
JSONBColumn | JSONB |
TimestampWithTimeZoneColumn | TIMESTAMP WITH TIME ZONE |
TimestampWithoutTimeZoneColumn | TIMESTAMP WITHOUT TIME ZONE |
TimestampColumn | TIMESTAMP |
DateColumn | DATE |
TimeColumn | TIME |
TimeWithoutTimeZoneColumn | TIME WITHOUT TIME ZONE |
TimeWithTimeZoneColumn | TIME WITH TIME ZONE |
IntervalColumn | INTERVAL |
MoneyColumn | MONEY |
UuidColumn | UUID |
StringColumn | TextColumn |
NumberColumn | IntegerColumn |
ByteaColumn | BYTEA |
BlobColumn | BYTEA |
BinaryColumn | BYTEA |
EnumColumn | Creates an enum type |
Up next
- Refactor internal API as some bits are a bit in a proof on concept state.
- Extend SQL keywords e.g. UNION, WITH, INSERT INTO-SELECT, etc.
- Improve upsert, delete.
- Support indices and enums.
Stay in touch!
Please star or watch this repo. Because Mammoth is still in development you can sign up to receive the announcement once we hit 1.0 http://eepurl.com/dgySSz (this is a Mailchimp sign up form). You can also start a discussion on e.g. GitHub to give feedback on the public API.
Versioning
A final note on the versioning: we're at version 0.X until we consider Mammoth not production-ready. Once we consider the project production-ready we bump to 1.0 and stricly abide to semver.