Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pb-yuri-zaporozhets/idbi
IndexedDB Promised
https://github.com/pb-yuri-zaporozhets/idbi
Last synced: 7 days ago
JSON representation
IndexedDB Promised
- Host: GitHub
- URL: https://github.com/pb-yuri-zaporozhets/idbi
- Owner: pb-yuri-zaporozhets
- Created: 2017-12-03T00:34:41.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2017-12-03T00:40:15.000Z (about 7 years ago)
- Last Synced: 2024-12-18T08:38:04.637Z (21 days ago)
- Language: JavaScript
- Size: 165 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# idbi - IndexedDB ideal
> IndexedDB Promised## Installation
```bash
npm install idbi --save
// or
yarn add idbi
```
## Open
```js
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))
```