Description

This package is a leveldb wrapper for the ridb database.

Installation & usage (typescript)

bash
1
npm install @trust0/ridb @trust0/ridb-level -S

Using yarn:

bash
1
yarn add @trust0/ridb @trust0/ridb-level

Usage

The following example demonstrates how to create a database with a leveldb storage engine and a simple schema with ID primary key as string.

typescript
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import { RIDB, SchemaFieldType, Doc } from '@trust0/ridb';
import { LevelDB } from '@trust0/ridb-level';
const db = new RIDB(
{
dbName: "test",
schemas: {
demo: {
version: 0,
primaryKey: 'id',
type: SchemaFieldType.object,
properties: {
id: {
type: SchemaFieldType.string,
maxLength: 60
}
}
}
} as const
}
)
await db.start({
storageType: LevelDB,
password: "test"
});