Skip to content

Edinburgh

TypeScript objects that live in the database.

Edinburgh blurs the line between in-memory objects and database records. Define a model class, and its instances are the database rows. They are read directly from a memory-mapped LMDB store on first access, and mutations are written back in an ACID transaction on commit. There is no SQL layer, no query builder, no network round-trip, and no result-set marshalling. A primary-key lookup completes in about 1 µs.

This makes problems like n+1 queries irrelevant: traversing post.author.department.manager is just a chain of microsecond memory-mapped reads, not a cascade of network calls.

Built on OLMDB (an optimistic-locking wrapper around LMDB).

  • Objects are records: model fields are backed by memory-mapped storage; no serialization boundary between your code and the database
  • Sub-microsecond reads: embedded B+ tree in the same process, no network hop, no query parsing
  • Type-safe at every layer: TypeScript inference at compile time, runtime validation at write time
  • First-class relationships: E.link(OtherModel) fields load lazily and transparently on access
  • Indexes: primary, unique, and secondary indexes with efficient range queries
  • ACID transactions: optimistic locking with automatic retry on conflict (up to 6 attempts)
  • Zero-downtime schema evolution: old rows are lazily migrated on read; no batch DDL required
import * as E from "edinburgh";
// Initialize the database (optional, defaults to ".edinburgh")
E.init("./my-database");
const User = E.defineModel("User", class {
id = E.field(E.identifier);
name = E.field(E.string);
age = E.field(E.number);
email = E.field(E.opt(E.string));
// Optional link to another instance of this model (needs a function as `User` is not defined yet at this point)
supervisor = E.field(E.opt(E.link(() => User)));
// A field with a more elaborate type. In TypeScript: `User | User[] | "unknown" | "whatever"`, defaulting to "unknown".
something = E.field(
E.or(
E.link(() => User),
E.array(E.link(() => User)),
E.literal("unknown"),
E.literal("whatever")
),
{ default: "unknown" }
);
}, {
pk: "id",
unique: {
email: "email",
},
});
await E.transact(() => {
// Unique 'id' values are auto-generated if not provided
const boss = new User({ name: "Big Boss", age: 50 });
new User({
name: "John Doe",
age: 41,
email: "john@example.com",
supervisor: boss, // Link to another model instance
});
// Newly instantiated models are automatically saved to the database on transaction commit
});
await E.transact(() => {
// Query by unique index
const john = User.getBy("email", "john@example.com")!;
// The transaction will retry if there's a conflict, such as another transaction
// modifying the same user (from another async function or another process)
john.age++;
// The supervisor object is lazy loaded on first access
console.log(`${john.supervisor!.name} is ${john.name}'s supervisor`);
});

A model is defined using the E.defineModel() function by passing it..

  • a consistent table name,
  • an (anonymous) class containing E.field database properties and optionally regular properties/methods, and
  • optional key/index configuration.
import * as E from "edinburgh";
const User = E.defineModel("User", class {
id = E.field(E.identifier);
name = E.field(E.string);
email = E.field(E.string);
age = E.field(E.number);
}, {
pk: "id",
unique: {
email: "email",
},
});
// Add this if you want to use User as a type annotation (e.g. `let u: User`).
// Not needed just to call User.get(), User.find(), new User(), etc.
type User = InstanceType<typeof User>;

Instance fields are declared with E.field(type, options?). Available types:

TypeTypeScript typeNotes
E.stringstring
E.orderedStringstringLexicographic sort in indexes; no null bytes
E.numbernumber
E.booleanboolean
E.dateTimeDateDefaults to new Date()
E.identifierstringAuto-generated 8-char unique ID
E.opt(T)T | undefinedMakes any type optional
E.or(A, B, ...)A | B | ...Union type; args can be types or literal values
E.literal(v)literal typeConstant value; defaults to that value
E.array(T)T[]Optional {min, max} constraints
E.set(T)Set<T>Optional {min, max} constraints
E.record(T)Record<string | number, T>Key-value object with string/number keys
E.link(Model)ModelForeign key, lazy-loaded on access
const Post = E.defineModel("Post", class {
id = E.field(E.identifier); // auto-generated
title = E.field(E.string);
status = E.field(E.or("draft", "published"), {default: "draft"});
tags = E.field(E.array(E.string), {default: () => []}); // use function for mutable defaults
createdAt = E.field(E.dateTime); // dateTime defaults to new Date()
}, { pk: "id" });

All database operations must run inside E.transact():

// Initialize (optional — defaults to ".edinburgh" directory)
E.init("./my-database");
// Create
await E.transact(() => {
// User.id is auto-generated
new User({name: "Alice", email: "alice@example.com", age: 30});
});
// Read + Update
await E.transact(() => {
const user = User.getBy("email", "alice@example.com");
if (user) user.age++;
});
// Return values from transactions
const name = await E.transact(() => {
const user = User.getBy("email", "alice@example.com");
return user?.name;
});

Transactions auto-retry on conflict (up to 6 times by default). Keep transaction functions idempotent.

Edinburgh supports three index types:

const Product = E.defineModel("Product", class {
sku = E.field(E.string);
name = E.field(E.string);
category = E.field(E.string);
price = E.field(E.number);
}, {
pk: "sku",
unique: { name: "name" },
index: { category: "category" },
});

If no pk is provided, Edinburgh auto-creates one on an id field, adding it as an E.identifier field if needed.

await E.transact(() => {
// Primary key lookup
const p1 = Product.get("SKU-001");
// Unique index lookup
const p2 = Product.getBy("name", "Widget");
// All return undefined if not found
});

If a primary key or named index includes a link(...) field, lookup helpers either accept the linked row’s instance object or its primary key. For linked models with composite primary keys, pass the full tuple in that slot:

await E.transact(() => {
// So instead of..
const post1 = Post.getBy("author", Author.get(user.id), "Hello World");
// We can do..
const post2 = Post.getBy("author", user.id, "Hello World");
// Or..
const post3 = Post.getBy("author", [user.id], "Hello World");
// For an index that includes a link with a composite primary key..
const page = Comment.getBy("target", ["docs", "intro"], "overview");
});

Primary-key queries use .find(). Named unique and secondary indexes use .findBy(name, ...):

await E.transact(() => {
// Exact match
for (const p of Product.findBy("category", {is: "electronics"})) {
console.log(p.name);
}
// Range (inclusive)
for (const p of Product.find({from: "A", to: "M"})) {
console.log(p.sku);
}
// Exclusive bounds
for (const p of Product.find({after: "A", before: "M"})) { ... }
// Open-ended
for (const p of Product.find({from: "M"})) { ... }
// Reverse
for (const p of Product.find({reverse: true})) { ... }
// Count and fetch helpers
const count = Product.findBy("category", {is: "electronics"}).count();
const first = Product.findBy("category", {is: "electronics"}).fetch(); // first match or undefined
});
const Event = E.defineModel("Event", class {
year = E.field(E.number);
month = E.field(E.number);
id = E.field(E.identifier);
title = E.field(E.string);
}, {
pk: ["year", "month", "id"] as const,
});
await E.transact(() => {
// Prefix matching — find all events in 2025
for (const e of Event.find({is: [2025]})) { ... }
// Find events in March 2025
for (const e of Event.find({is: [2025, 3]})) { ... }
});

You can freely add regular methods, getters, and other non-persistent properties to model classes. These work normally in JavaScript but are not stored in the database and not synchronized across transactions or processes.

const User = E.defineModel("User", class {
firstName = E.field(E.string);
lastName = E.field(E.string);
// Non-persisted property
cachedFullName?: string;
get fullName(): string {
this.cachedFullName ??= `${this.firstName} ${this.lastName}`;
return this.cachedFullName;
}
greet(): string {
return `Hello, ${this.fullName}!`;
}
});

Instead of naming fields, you can pass a function as an index specification. The function receives a model instance and returns an array of index key values. Each element creates a separate index entry, enabling multi-value indexes. Return [] to skip indexing for that instance (partial index).

const Article = E.defineModel("Article", class {
id = E.field(E.identifier);
firstName = E.field(E.string);
lastName = E.field(E.string);
title = E.field(E.string);
email = E.field(E.opt(E.string));
}, {
pk: "id",
unique: {
fullName: (a: any) => [`${a.firstName} ${a.lastName}`], // computed covering unique index
},
index: {
domain: (a: any) => a.email ? [a.email.split("@")[1]] : [], // computed partial index
word: (a: any) => a.title.toLowerCase().split(" "), // computed multi-index
},
});
await E.transact(() => {
new Article({ firstName: "Jane", lastName: "Doe", title: "Hello World", email: "jane@acme.com" });
// Lookup via computed unique index
const jane = Article.getBy("fullName", "Jane Doe");
// Multi-value: each word in the title is indexed separately
for (const a of Article.findBy("word", {is: "hello"})) { ... }
// Partial index: articles without email are skipped
for (const a of Article.findBy("domain", {is: "acme.com"})) { ... }
});

Use E.link(Model) for foreign keys. Use a thunk (a function that just returns a value) for forward references when needed:

const Author = E.defineModel("Author", class {
id = E.field(E.identifier);
name = E.field(E.string);
}, { pk: "id" });
const Book = E.defineModel("Book", class {
id = E.field(E.identifier);
title = E.field(E.string);
author = E.field(E.link(Author));
}, { pk: "id" });
await E.transact(() => {
const author = new Author({name: "Tolkien"});
const book = new Book({title: "The Hobbit", author});
// Later: linked models are lazy-loaded on property access
const b = Book.get(book.id)!;
console.log(b.author.id); // no need to load yet..
console.log(b.author.name); // loads Author automatically (~1µs)
});
await E.transact(() => {
const user = User.get(someId);
if (user) user.delete();
});
await E.transact(() => {
const user = new User({name: "Bob", email: "bob@example.com", age: 25});
user.validate(); // returns Error[]
user.isValid(); // returns boolean
user.getState(); // "created" | "loaded" | "lazy" | "deleted"
user.getPrimaryKey(); // Uint8Array
user.preventPersist(); // exclude from commit
});
// find() iterates all instances (or use range options)
await E.transact(() => {
for (const user of User.find()) { ... }
for (const user of User.find({reverse: true})) { ... }
// {fetch: 'first'} returns a single instance or undefined
const first = User.find({fetch: 'first'});
// {fetch: 'single'} returns a single instance, or throws if there are none or more than one
const only = User.find({fetch: 'single'});
});
// replaceInto: upsert by primary key
await E.transact(() => {
User.replaceInto({id: existingId, name: "Updated Name", email: "new@example.com", age: 30});
});

For large datasets, batchProcess auto-commits in batches:

await Product.batchProcess({ limitRows: 1000 }, (product) => {
product.category = "archived";
});
// Commits every ~1 second or 4096 rows (configurable via limitSeconds, limitRows)

When you change a model’s schema, Edinburgh lazily migrates old records on access. You can provide a static migrate(record) function to transform old rows:

const UserV2 = E.defineModel("User", class {
id = E.field(E.identifier);
name = E.field(E.string);
role = E.field(E.string); // newly added field
static migrate(record: Record<string, any>) {
record.role ??= record.name.indexOf("admin") >= 0 ? "admin" : "user"; // set role based on name for old records
}
})

Edinburgh will lazily (re)run the migrate function on an instance whenever its implementation (the literal function code) has changed. For robustness, make sure that your migrate function…

  • Is idempotent (meaning it can be safely run multiple times on the same row without changing the result after the first run), and
  • Should perform all transformation steps starting from the oldest version that could possibly still be in the database. (See the next section.)

While lazy migration is convenient and often sufficient, in some cases you need migrations to happen immediately…

The migrate-edinburgh CLI tool will scan the entire database, pro-actively performing the following migrations:

  • Populate secondary indexes: If you added or changed secondary indexes, it will build them. Until you do, the indexes will be empty (or only contain instances that have been saved since the index was created).
  • Migrate primary indexes: In case you changed the primary key fields or field types (not recommended!) of a model, it will build the new primary index, as well as all secondary indexes (to point at the new primary keys). Until you do, all of your old data will appear to be missing! Note that this may fail on duplicates.
  • Remove orphaned indexes: If you removed or changed an index, the stale data will be deleted from the database.
  • Rewrite primary data: These are the types of migrations that would normally be done lazily on instance access. As there’s usually not much benefit to doing this forcibly, and it can be very time-consuming (and generates a lot of I/O), this is not done by default. It may however be useful if you want to clean up the contents of your migrate() function, if you have control over all application deployments. Use the --rewrite-data flag to enable this.
Terminal window
npx migrate-edinburgh ./src/models.ts

Run npx migrate-edinburgh without arguments to see all options. You can also call runMigration() programmatically:

import { runMigration } from "edinburgh";
const result = await runMigration({ tables: ["User"] });
console.log(result.secondaries); // { User: 1500 }

Compute derived fields before data is written:

const Article = E.defineModel("Article", class {
id = E.field(E.identifier);
title = E.field(E.string);
slug = E.field(E.string);
preCommit() {
this.slug = this.title.toLowerCase().replace(/\s+/g, "-");
}
});

Monitor commits with setOnSaveCallback:

E.setOnSaveCallback((commitId, items) => {
for (const [instance, change] of items) {
if (change === "created") { /* new record */ }
else if (change === "deleted") { /* removed */ }
else { /* change is an object with old values of modified fields */ }
}
});

Enable debug logging by setting the EDINBURGH_LOG_LEVEL environment variable (0–3). Higher numbers produce more verbose logs.

  • 0: no logging (default)
  • 1: model-level logs
  • 2: + update logs
  • 3: + read logs

If you use Claude Code, GitHub Copilot or another AI agent that supports Skills, Edinburgh includes a skill/ directory in its npm package that provides specialized knowledge to the AI about how to use the library effectively.

Symlink the skill into your project’s .claude/skills directory:

Terminal window
mkdir -p .claude/skills
ln -s ../../node_modules/edinburgh/skill .claude/skills/edinburgh

The following is auto-generated from src/edinburgh.ts:

Returns the current transaction from AsyncLocalStorage. Throws if called outside a transact() callback.

Signature: () => Transaction

Initialize the database with the specified directory path. This function may be called multiple times with the same parameters. If it is not called before the first transact(), the database will be automatically initialized with the default directory.

Signature: (dbDir: string) => void

Parameters:

  • dbDir: string

Examples:

init("./my-database");

Executes a function within a database transaction context.

Loading models (also through links in other models) and changing models can only be done from within a transaction.

Transactions have a consistent view of the database, and changes made within a transaction are isolated from other transactions until they are committed. In case a commit clashes with changes made by another transaction, the transaction function will automatically be re-executed up to 6 times.

Signature: <T>(fn: () => T) => Promise<T>

Type Parameters:

  • T - The return type of the transaction function.

Parameters:

  • fn: () => T - The function to execute within the transaction context. Receives a Transaction instance.

Returns: A promise that resolves with the function’s return value.

Throws:

  • With code “RACING_TRANSACTION” if the transaction fails after retries due to conflicts.
  • With code “TXN_LIMIT” if maximum number of transactions is reached.
  • With code “LMDB-{code}” for LMDB-specific errors.

Examples:

const paid = await E.transact(() => {
const user = User.get("john_doe");
if (user.credits > 0) {
user.credits--;
return true;
}
return false;
});
// Transaction with automatic retry on conflicts
await E.transact(() => {
const counter = Counter.get("global") || new Counter({id: "global", value: 0});
counter.value++;
});

Set the maximum number of retries for a transaction in case of conflicts. The default value is 6. Setting it to 0 will disable retries and cause transactions to fail immediately on conflict.

Signature: (count: number) => void

Parameters:

  • count: number - The maximum number of retries for a transaction.

Set a callback function to be called after a model is saved and committed.

Signature: (callback: (commitId: number, items: Map<ModelBase<ModelLookup<readonly any[]>>, Change>) => void) => void

Parameters:

  • callback: ((commitId: number, items: Map<Model<unknown>, Change>) => void) | undefined - The callback function to set. It gets called after each successful transact() commit that has changes, with the following arguments:
  • A sequential number. Higher numbers have been committed after lower numbers.
  • A map of model instances to their changes. The change can be “created”, “deleted”, or an object containing the old values.

The callback is called within a new transaction context at or after the committed state, so lazy-loads and additional writes are allowed.

Type: typeof ModelBase

Runtime base constructor for model classes returned by defineModel().

Prefer the ModelClass type alias for annotations and the result of defineModel() for concrete model classes.

Type: typeof ModelClassRuntime

A model constructor with its generic information erased.

Useful when accepting or storing arbitrary registered model classes.

Type: ModelClass<object, any, readonly any[], any, any>

Base class for all database models in the Edinburgh ORM.

Models represent database entities with typed fields, automatic serialization, change tracking, and relationship management. Model classes are created using E.defineModel().

Edinburgh tracks the schema version of each model automatically. When you add, remove, or change the types of fields, or add/remove indexes, Edinburgh detects the new schema version.

Lazy migration: Changes to non-key field values are migrated lazily, when a row with an old schema version is read from disk, it is deserialized using the old schema and optionally transformed by the static migrate() function. This happens transparently on every read and requires no downtime or batch processing.

Batch migration (via npx migrate-edinburgh or runMigration()): Certain schema changes require an explicit migration run:

  • Adding or removing secondary/unique indexes
  • Changing the fields or types of an existing index
  • A migrate() function that changes values used in secondary index fields

The batch migration tool populates new indexes, deletes orphaned ones, and updates index entries whose values were changed by migrate(). It does not rewrite primary data rows (lazy migration handles that).

  • static migrate(record): Called when deserializing rows written with an older schema version. Receives a plain record object; mutate it in-place to match the current schema.

  • preCommit(): Called on each modified instance right before the transaction commits. Useful for computing derived fields, enforcing cross-field invariants, or creating related instances.

Examples:

const User = E.defineModel("User", class {
id = E.field(E.identifier);
name = E.field(E.string);
email = E.field(E.string);
}, {
pk: "id",
unique: { email: "email" },
});
// Optional: declare a companion type so `let u: User` works.
// Not needed if you only use `new User()`, `User.find()`, etc.
type User = InstanceType<typeof User>;

Optional migration function called when deserializing rows written with an older schema version. Receives a plain record with all fields and should mutate it in-place to match the current schema. It runs during lazy loading and during runMigration(). Changing this method creates a new schema version. If it updates values used by secondary or unique indexes, those index entries are refreshed only by runMigration().

Signature: (record: Record<string, any>) => void

Parameters:

  • record: Record<string, any> - A plain object containing the row’s field values from the older schema version.

Examples:

const User = E.defineModel("User", class {
id = E.field(E.identifier);
name = E.field(E.string);
role = E.field(E.string);
static migrate(record: Record<string, any>) {
record.role ??= "user";
}
}, { pk: "id" });

Optional hook called on each modified instance right before the transaction commits. Runs before data is written to disk, so changes made here are included in the commit.

Common use cases:

  • Computing derived or denormalized fields
  • Enforcing cross-field validation rules
  • Creating or updating related model instances (newly created instances will also have their preCommit() called)

Signature: () => void

Examples:

const Post = E.defineModel("Post", class {
id = E.field(E.identifier);
title = E.field(E.string);
slug = E.field(E.string);
preCommit() {
this.slug = this.title.toLowerCase().replace(/\s+/g, "-");
}
}, { pk: "id" });

Signature: () => Uint8Array<ArrayBufferLike>

Returns: The primary key for this instance.

Signature: () => number

Returns: A 53-bit positive integer non-cryptographic hash of the primary key, or undefined if not yet saved.

Signature: (field: keyof this) => boolean

Parameters:

  • field: keyof this

Prevent this instance from being persisted to the database.

Signature: () => this

Returns: This model instance for chaining.

Examples:

const user = User.get("user123");
user.name = "New Name";
user.preventPersist(); // Changes won't be saved

Delete this model instance from the database.

Removes the instance and all its index entries from the database and prevents further persistence.

Signature: () => void

Examples:

const user = User.get("user123");
user.delete(); // Removes from database

Validate all fields in this model instance.

Signature: (raise?: boolean) => Error[]

Parameters:

  • raise: boolean (optional) - If true, throw on first validation error.

Returns: Array of validation errors (empty if valid).

Examples:

const user = new User();
const errors = user.validate();
if (errors.length > 0) {
console.log("Validation failed:", errors);
}

Check if this model instance is valid.

Signature: () => boolean

Returns: true if all validations pass.

Examples:

const user = new User({name: "John"});
if (!user.isValid()) shoutAtTheUser();

Signature: () => "created" | "deleted" | "loaded" | "lazy"

Signature: () => string

Signature: () => string

Type Parameters:

  • PKA extends readonly any[] = readonly any[]

Type: (...args: PKA) => any

Register a model class with the Edinburgh ORM system.

Converts a plain class into a fully-featured model with database persistence, typed fields, primary key access, and optional secondary and unique indexes.

Signature: <T extends new () => any, const PK extends (keyof ModelFields<T> & string) | readonly (keyof ModelFields<T> & string)[], const UNIQUE extends Record<string, IndexSpec<T>>, const INDEX extends Record<string, IndexSpec<T>>>(tableName: string, cls: T, opts?: { ...; }) => ModelClass<...>

Type Parameters:

  • T extends new () => any
  • PK extends (keyof ModelFields<T> & string) | readonly (keyof ModelFields<T> & string)[]
  • UNIQUE extends Record<string, IndexSpec<T>>
  • INDEX extends Record<string, IndexSpec<T>>

Parameters:

  • tableName: string - The database table name for this model.
  • cls: T - A plain class whose properties use E.field().
  • opts?: { pk?: PK, unique?: UNIQUE, index?: INDEX, override?: boolean } - Registration options.

Returns: The enhanced model constructor.

Delete every key/value entry in the database and reinitialize all registered models.

This clears rows, index metadata, and schema-version records. It is mainly useful for tests, local resets, or tooling that needs a completely empty database.

Signature: () => Promise<void>

Create a field definition for a model property.

This function uses TypeScript magic to return the field configuration object while appearing to return the actual field value type to the type system. This allows for both runtime introspection and compile-time type safety.

Signature: <TYPE extends TypeWrapper<any>>(type: TYPE, options?: Partial<FieldConfig<FieldValue<TYPE>>>) => FieldValue<TYPE>

Type Parameters:

  • TYPE extends TypeWrapper<any> - The field type.

Parameters:

  • type: TYPE - The type wrapper for this field.
  • options: Partial<FieldConfig<FieldValue<TYPE>>> (optional) - Additional field configuration options.

Returns: The field value (typed as T, but actually returns FieldConfig).

Examples:

const User = E.defineModel("User", class {
name = E.field(E.string, {description: "User's full name"});
age = E.field(E.opt(E.number), {description: "User's age", default: 25});
});

Type wrapper instance for the string type.

Value: TypeWrapper<string>

Type wrapper instance for the ordered string type, which is just like a string except that it sorts lexicographically in the database (instead of by incrementing length first), making it suitable for index fields that want lexicographic range scans. Ordered strings are implemented as null-terminated UTF-8 strings, so they may not contain null characters.

Value: TypeWrapper<string>

Type wrapper instance for the number type.

Value: TypeWrapper<number>

Type wrapper instance for the date/time type. Stored without timezone info, rounded to whole seconds.

Value: TypeWrapper<Date>

Type wrapper instance for the boolean type.

Value: TypeWrapper<boolean>

Type wrapper instance for the identifier type.

Value: TypeWrapper<string>

Type wrapper instance for the ‘undefined’ type.

Value: TypeWrapper<undefined>

Create an optional type wrapper (allows undefined).

Signature: <const T extends TypeWrapper<unknown> | BasicType>(inner: T) => TypeWrapper<T extends TypeWrapper<infer U> ? U : T>

Type Parameters:

  • T extends TypeWrapper<unknown>|BasicType - Type wrapper or basic type to make optional.

Parameters:

  • inner: T - The inner type to make optional.

Returns: A union type that accepts the inner type or undefined.

Examples:

const optionalString = E.opt(E.string);
const optionalNumber = E.opt(E.number);

Create a union type wrapper from multiple type choices.

Signature: <const T extends (TypeWrapper<unknown> | BasicType)[]>(...choices: T) => TypeWrapper<UnwrapTypes<T>>

Type Parameters:

  • T extends (TypeWrapper<unknown>|BasicType)[] - Array of type wrapper or basic types.

Parameters:

  • choices: T - The type choices for the union.

Returns: A union type instance.

Examples:

const stringOrNumber = E.or(E.string, E.number);
const status = E.or("active", "inactive", "pending");

Create an array type wrapper with optional length constraints.

Signature: <const T>(inner: TypeWrapper<T>, opts?: { min?: number; max?: number; }) => TypeWrapper<T[]>

Type Parameters:

  • T - The element type.

Parameters:

  • inner: TypeWrapper<T> - Type wrapper for array elements.
  • opts: {min?: number, max?: number} (optional) - Optional constraints (min/max length).

Returns: An array type instance.

Examples:

const stringArray = E.array(E.string);
const boundedArray = E.array(E.number, {min: 1, max: 10});

Create a Set type wrapper with optional length constraints.

Signature: <const T>(inner: TypeWrapper<T>, opts?: { min?: number; max?: number; }) => TypeWrapper<Set<T>>

Type Parameters:

  • T - The element type.

Parameters:

  • inner: TypeWrapper<T> - Type wrapper for set elements.
  • opts: {min?: number, max?: number} (optional) - Optional constraints (min/max length).

Returns: A set type instance.

Examples:

const stringSet = E.set(E.string);
const boundedSet = E.set(E.number, {min: 1, max: 10});

Create a Record type wrapper for key-value objects with string or number keys.

Signature: <const T>(inner: TypeWrapper<T>) => TypeWrapper<Record<string | number, T>>

Type Parameters:

  • T - The value type.

Parameters:

  • inner: TypeWrapper<T> - Type wrapper for record values.

Returns: A record type instance.

Examples:

const scores = E.record(E.number); // Record<string | number, number>

Create a literal type wrapper for a constant value.

Signature: <const T>(value: T) => TypeWrapper<T>

Type Parameters:

  • T - The literal type.

Parameters:

  • value: T - The literal value.

Returns: A literal type instance.

Examples:

const statusType = E.literal("active");
const countType = E.literal(42);

Create a link type wrapper for model relationships.

Signature: { <const T extends new (...args: any[]) => Model<any>>(TargetModel: T): TypeWrapper<InstanceType<T>>; <const T extends new (...args: any[]) => Model<any>>(TargetModel: () => T): TypeWrapper<...>; }

Type Parameters:

  • T extends new (...args: any[]) => Model<any> - The target model class.

Parameters:

  • TargetModel: T - The model class this link points to.

Returns: A link type instance.

Examples:

const Author = E.defineModel("Author", class {
id = E.field(E.identifier);
posts = E.field(E.array(E.link(() => Book)));
}, { pk: "id" });
const Book = E.defineModel("Book", class {
id = E.field(E.identifier);
author = E.field(E.link(Author));
}, { pk: "id" });

Signature: () => void

Range-query options accepted by find(), findBy(), batchProcess(), and batchProcessBy().

Supports exact-match lookups via is, inclusive bounds via from / to, exclusive bounds via after / before, and reverse scans.

For single-field indexes, values can be passed directly. For composite indexes, pass tuples or partial tuples for prefix matching. If an index field is a link(...), you may pass either the linked model instance or the linked model’s primary key. Composite linked primary keys are passed as tuples in that slot.

Type: ( ( {is: ArrayOrOnlyItem<ARG_TYPES>;} // Shortcut for setting fromandto to the same value | ( ( {from: ArrayOrOnlyItem<ARG_TYPES>;} | {after: ArrayOrOnlyItem<ARG_TYPES>;} | {} ) & ( {to: ArrayOrOnlyItem<ARG_TYPES>;} | {before: ArrayOrOnlyItem<ARG_TYPES>;} | {} ) ) ) & { reverse?: boolean; } & (FETCH extends undefined ? { fetch?: undefined } : { fetch: FETCH }) )

Iterator for range queries on indexes. Handles common iteration logic for both primary and unique indexes. Extends built-in Iterator to provide map/filter/reduce/toArray/etc.

Type Parameters:

  • ITEM

Signature: () => this

Signature: () => IteratorResult<ITEM, any>

Signature: () => number

Signature: () => ITEM

Type: Record<any, any> | "created" | "deleted"

Configuration interface for model fields.

Type Parameters:

  • T - The field type.

The type wrapper that defines how this field is serialized/validated.

Type: TypeWrapper<T>

Optional human-readable description of the field.

Type: string

Optional default value or function that generates default values.

Type: T | ((model: Record<string, any>) => T)

Type Parameters:

  • T - The TypeScript type this wrapper represents.

A string identifier for this type, used during serialization

Type: string

Serialize a value from an object property to a Pack.

Signature: (value: T, pack: DataPack) => void

Parameters:

  • value: T - The value to serialize.
  • pack: DataPack - The Pack instance to write to.

Deserialize a value from a Pack into an object property.

Signature: (pack: DataPack) => T

Parameters:

  • pack: DataPack - The Pack instance to read from.

Validate a value.

Signature: (value: T) => void | DatabaseError

Parameters:

  • value: T - The value to validate.

Returns: - A DatabaseError if validation fails.

Serialize type metadata to a Pack (for schema serialization).

Signature: (pack: DataPack) => void

Parameters:

  • pack: DataPack - The Pack instance to write to.

Check if indexing should be skipped for this field value.

Signature: (value: T) => boolean

Parameters:

  • value: T

Returns: true if indexing should be skipped.

Signature: () => string

Signature: (value: T) => T

Parameters:

  • value: T

Signature: (value1: T, value2: T) => boolean

Parameters:

  • value1: T
  • value2: T

Signature: () => AnyModelClass

The DatabaseError class is used to represent errors that occur during database operations. It extends the built-in Error class and has a machine readable error code string property.

The lowlevel API will throw DatabaseError instances for all database-related errors. Invalid function arguments will throw TypeError.

Value: DatabaseErrorConstructor

Run database migration: populate secondary indexes for old-version rows, convert old primary indices, rewrite row data, and clean up orphaned indices.

Signature: (options?: MigrationOptions) => Promise<MigrationResult>

Parameters:

  • options: MigrationOptions (optional)

Limit migration to specific table names.

Type: string[]

Populate secondary indexes for rows at old schema versions (default: true).

Type: boolean

Convert old primary indices when primary key fields changed (default: true).

Type: boolean

Rewrite all row data to the latest schema version (default: false).

Type: boolean

Delete orphaned secondary/unique index entries (default: true).

Type: boolean

Progress callback.

Type: (info: ProgressInfo) => void

Per-table counts of secondary index entries populated.

Type: Record<string, number>

Per-table counts of old primary rows migrated.

Type: Record<string, number>

Per-table conversion failure counts by reason.

Type: Record<string, Record<string, number>>

Per-table counts of rows rewritten to latest version.

Type: Record<string, number>

Number of orphaned index entries deleted.

Type: number

Type: number

Type: Map<number, ModelBase<ModelLookup<readonly any[]>>>

Value: AsyncLocalStorage<Transaction>