This version has been re-written from scratch in order to allow possible contributors to more easily add new storage options. With this refactor adding new options is as easy as adding a file (and of course testing it), all contributions are welcome!
New Features 🍾 🎉 :
ExpirableStorageadds the ability to expire preferences see #71NamespaceableStorageit allows your preferences to be namespacedSerializableStorageit allows you to provide custom serializer/deserializer functions to handle you you preferences in custom ways, the default is JSON, but you can provide CSV, binary, etc.- All options can be provided globally or locally
Breaking Changes💥:
- Previously all preferences would use the
vpnamespace, so if you want to be able to use already saved preferences you will need to addnamespace: 'vp'to you options - If you provide some kind of custom
storageyou now need to ensure aremoveItemmethod is available.
Bug Fixes 🐛:
- The preferences in the programatic way didn't worked properly, now they do!