Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
@ff00ff/mammoth
Advanced tools
[![Build Status](https://travis-ci.org/Ff00ff/mammoth.svg?branch=master)](https://travis-ci.org/Ff00ff/mammoth) [![Coverage Status](https://coveralls.io/repos/github/Ff00ff/mammoth/badge.svg?branch=master)](https://coveralls.io/github/Ff00ff/mammoth?branc
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.
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.
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();
}
To update rows.
const numberOfUpdates = await db
.update(db.list)
.set({
name: `New Name`
})
.where(db.list.id.eq(`acb82ff3-3311-430e-9d1d-8ff600abee31`));
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 rows = 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 array of objects with keys matching the columns specified.
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
.intoInto(db.list)
.values({
id: null,
createdAt: null,
name: `My List`,
})
.returning(`id`)
.first();
await db
.insertInto(db.listItem)
.values({
id: null,
createdAt: undefined,
listId: list.id,
name: `My Item`,
});
return list;
});
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:
src/db.ts
.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.
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}`;
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.
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.
FAQs
![Mammoth](https://s3-eu-west-1.amazonaws.com/mammoth-static.ff00ff.nl/mammoth-logo.png)
The npm package @ff00ff/mammoth receives a total of 75 weekly downloads. As such, @ff00ff/mammoth popularity was classified as not popular.
We found that @ff00ff/mammoth demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.