0.4.0 • Published 10 months ago

agile-store v0.4.0

Weekly downloads
-
License
-
Repository
-
Last release
10 months ago

agile-store

The goal of this library is to provide developers with a more direct way of interfacing with their stores with type-safety in mind. It keeps transaction handling implicit for simple operations, keeping the headache away for trivial tasks. Built entirely with Promises.

Installation

npm install agile-store@latest

Basic usage

Initializing the database and stores

The library provides the method createStores to activate all of your stores all at once.

Initializing a store

Each store follows one schema that's defined via an interface. Note that only calling the constructor doesn't make the store ready to use yet.

db.ts

import { Store } from "agile-store";

interface Item {
  name: string;
  price: number;
  onSale: boolean;
}

export const itemsStore = new Store<Item>({
  name: "items",
  keyPath: "name",
  autoIncrement: false,
  indices: ["price"],
});

Opening the store

createStores asynchronously creates the database and opens the provided stores. After that, you can use the methods provided in the stores you made earlier. You may want to perform any main rendering logic after createStores executes (usually through .then()).

main.ts

import { createStores } from "agile-store";
import { itemsStore } from "./db";

createStores("test-db", 1, [itemsStore]);

Basic CRUD operations

Add a record

itemsStore.add({
  name: "Piano",
  price: 10000,
  onSale: true,
});

Get a record

const record = await itemsStore.getOne("name", "Piano");

Note that there are multiple ways to query for records, including a filter method that uses a user-provided qualifier function to return all records that pass the function.

Update a record

itemsStore.put({
  name: "Piano",
  price: 10000,
  onSale: false,
});

Note that put requires a full object of the store's type. Partial object update operations coming soon.

Delete a record

itemsStore.deleteOne("Piano");

License

MIT

0.4.0

10 months ago

0.3.1

10 months ago

0.3.0

10 months ago

0.2.0

10 months ago

0.1.1

10 months ago

0.1.0

10 months ago