angular-localForage
angular-localForage copied to clipboard
Angular service & directive for https://github.com/mozilla/localForage (Offline storage, improved.)
There are a few `devDependencies` that are out of date or unnecessary. Evaluate and clean up. A few examples: ``` gulp-clean -> del [email protected] -> [email protected] ```
We should offer a plugin to enable storage compression (see [this article](http://pieroxy.net/blog/pages/lz-string/index.html) and [this lib](https://github.com/nodeca/pako) for examples).
Im on Ionic, I need a DB to work on, with and without connection. My Q is, I need 2 instances of localForage, so how do I put in angular.run()...
At the moment, you can get multiple items back from localForage by passing an array to the `getItem` method. That will return an array of values indexed to the key....
I'm having trouble with the directive. It works except for certain cases where input is entered, highlighted, and deleted using the backspace key. Also, when value is entered and then...
I've a scope variable that I'm watching at. Based on this variable I bind to a localForage key. In case of change, I want to unbind the 'old' value and...
We could add an encryption functionality such as the one described in ngStore for Angular 2: https://docs.google.com/document/d/1DMacL7iwjSMPP0ytZfugpU4v0PWUK0BT6lhyaVEmlBQ/edit#heading=h.57girrphcre7 And something like that maybe: https://github.com/jas-/secStore.js
Is it possible to use the `bind` function to bind to a particular element in a scope array? e.g. if I wanted to bind a stored message array to the...