@zthun/dalmart-forage
v1.6.6
Published
A database interface to web sql and indexed db.
Readme
Dalmart Forage
Dalmart Forage adds a dalmart memory database for usage of a browser's IndexedDb feature.
Installation
npm install @zthun/dalmart-forage
yarn add @zthun/dalmart-forageUsage
import { IZDatabaseMemory, ZDatabaseOptionsBuilder } from "@zthun/dalmart-db";
import { ZDatabaseForage } from "@zthun/dalmart-forage";
const options = new ZDatabaseOptionsBuilder().database("local-data");
const database: IZDatabaseMemory = new ZDatabaseForage(options);
// Do stuff with database