/easy-db-react-native

Lite&easy database for react-native.

Primary LanguageTypeScriptMIT LicenseMIT

Easy DB for react-native

Deprecated repository. Use easy-db instead.

Lite&easy database for react-native, powered by easy-db-code. Not create any database structure, just use it.

Include types for TypeScript.

API

import { insert, select, update, remove } from "easy-db-react-native";

// 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 { select, update } from "easy-db-react-native";

// Save nickname 
await update("myAppName", "nickname", nickname);

// Load nickname
const nickname = await select("myAppName", "nickname");