Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mydea/ember-indexeddb
Utilities & adapter to work with IndexedDB in ember & ember-data
https://github.com/mydea/ember-indexeddb
dexie ember ember-addon ember-cli ember-cli-addon ember-data ember-indexeddb indexeddb
Last synced: about 2 months ago
JSON representation
Utilities & adapter to work with IndexedDB in ember & ember-data
- Host: GitHub
- URL: https://github.com/mydea/ember-indexeddb
- Owner: mydea
- License: mit
- Created: 2016-12-07T15:00:36.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2024-05-01T21:15:27.000Z (9 months ago)
- Last Synced: 2024-11-22T05:42:03.438Z (2 months ago)
- Topics: dexie, ember, ember-addon, ember-cli, ember-cli-addon, ember-data, ember-indexeddb, indexeddb
- Language: JavaScript
- Homepage: https://mydea.github.io/ember-indexeddb/docs/
- Size: 5.75 MB
- Stars: 17
- Watchers: 1
- Forks: 5
- Open Issues: 18
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
Awesome Lists containing this project
- awesome-ember - ember-indexeddb - Utilities & adapter to work with IndexedDB in ember & ember-data. (Packages / Adapters)
README
# ember-indexeddb
This addon provides utilities to work with IndexedDB based on [Dexie](http://dexie.org/).
![Test & Lint](https://github.com/mydea/ember-indexeddb/workflows/Test%20&%20Lint/badge.svg)
[![Ember Observer Score](https://emberobserver.com/badges/ember-indexeddb.svg)](https://emberobserver.com/addons/ember-indexeddb)
[![npm version](https://badge.fury.io/js/ember-indexeddb.svg)](https://badge.fury.io/js/ember-indexeddb)It provides:
* A service to configure the database & migrations/upgrades
* A service to interact with the database
* An ember-data adapter for IndexedDBThis set of utilities makes it possible to query data from an API, put it into IndexedDB, and work with a local database for full offline capabilities.
## Documentation
The documentation shows how to setup & use ember-indexeddb.
[View Documentation](https://mydea.github.io/ember-indexeddb/docs/)
For an example implementation, look at the [example route](https://github.com/mydea/ember-indexeddb/blob/master/tests/dummy/app/example/route.js) in the dummy app. See the example configuration of the [indexed-db-configuration service](https://github.com/mydea/ember-indexeddb/blob/master/tests/dummy/app/services/indexed-db-configuration.js) there as well.
Compatibility
------------------------------------------------------------------------------* Ember.js v3.16 or above
* Ember CLI v2.13 or above
* Node.js v10 or above