0.0.3-alpha • Published 6 months ago

@devp0510/kv-db v0.0.3-alpha

Weekly downloads
-
License
MIT
Repository
github
Last release
6 months ago

@devp0510/kv-db

version 0.0.2-alpha

instagram
npm

browser local storage Indexed DB Library

브라우저 내부저장소 indexed db 라이브러리

install

npm install @devp0510/kv-db

create Database

javascript

import { CreateKVDB } from "@devp0510/kv-db"
const myKVDB = new CreateKVDB("myKeyValDB",1);

typescript

import { CreateKVDB } from "@devp0510/kv-db"
const myKVDB = new CreateKVDB("myKeyValDB",1);

create store

javascript

const store = await myKVDB.createStore("myStore","id")

typescript

const store = await myKVDB.createStore("myStore","id")

create index and DML

javascript

import { KVDBStoreIndex } from "@devp0510/kv-db"
const storeDML = new KVDBStoreIndex(store);
store.readOne(1)
store.readAll(1)
store.createOne({name:"seungho",age:22})
0.0.3-alpha

6 months ago

0.0.2-alpha

6 months ago

0.0.1-alpha

6 months ago