easy-db-browser
v3.0.0
Published
Lite&easy database for browsers based on localStorage.
Downloads
19
Maintainers
Readme
Easy DB for browser
Lite&easy database for browsers based on localStorage, powered by easy-db-code
.
Not create any database structure, just use it.
Include types for TypeScript.
API
import easyDB from "easy-db-browser";
const { insert, select, update, remove } = easyDB();
// INSERT
const idOfRow = await insert("collection1", { myRow: 1 });
// SELECT
const allCollection1 = await select("collection1");
const myRow1 = await select("collection1", idOfRow);
// UPDATE
await update("collection1", idOfRow, { ...myRow1, update: 1 });
// REMOVE
await remove("collection1", idOfRow); // only one row
Example of use
import easyDB from "easy-db-browser";
const { select, update } = easyDB();
// Save nickname
await update("myAppName", "nickname", nickname);
// Load nickname
const nickname = await select("myAppName", "nickname");