idbi
v0.0.9
Published
IndexedDB Promised
Downloads
3
Readme
idbi - IndexedDB ideal
IndexedDB Promised
Installation
npm install idbi --save
// or
yarn add idbi
Open
let {Books, User} = idbi.open({
name: 'muse',
stores: {
Books: {
author: {},
dataFactory: [
{ author: 1, title: 'First book' }
]
},
User: {
email: {}
}
}
})
Books.add({ title: 'The second book' })
.then(id => console.log(id))