angular-local-storage icon indicating copy to clipboard operation
angular-local-storage copied to clipboard

An AngularJS module that gives you access to the browsers local storage with cookie fallback

Results 65 angular-local-storage issues
Sort by recently updated
recently updated
newest added
trafficstars

I get a JSON stringify error when attempting to store any object: error converting circular reference. I'm 100% sure my object(s) do not have circular references.

bug

I noticed @ayman-alkom created some pull requests with the same idea but it seems it never got completed. I followed the same idea but added the necessary test cases. I...

ensured that the correct key was used. Got an undefined return from the local storage remove function.

bug
wontfix
rfc

Hi, it's possible to add in future releases an option to compress a value after insert it on local or session storage?. We are using [LZ-string](https://github.com/pieroxy/lz-string/) and it's fast and...

deriveQualifiedKey has a particular implementation: 'prefix' + 'key' underiveQualifiedKey should reverse the process using the same logic (i.e. key.substr(prefix.length)) while building a regex to replace the beginning is fun, it...

Looking to use both **Local Storage** as well as **Session Storage.** Iniitally Configured the module to use 'localstorage' `localStorageServiceProvider.setStorageType('localStorage')`. But What if I want to session storage somewhere in middle...

This is something I came across when trying to use Local Storage which eventually fallbacks to also unsupported/blocked cookie storage. Repro steps: - Call **LocalStorageService.get('dummyKey')** - Local Storage is not...

Would it be possible to add support for Chrome Web Apps? So that the library can be used across different platforms, and if the code runs within a Chrome Web...

rfc

Session storage is, by design intended for potentially private data. For this reason, it cannot be shared between tabs, or persist. And it is for this reason I think you...

enhancement
discussion