You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
I've written a basic driver for using chrome.storage.local inside Chrome Packaged Apps. It works pretty well for my application but it's kind of hacky in places.
Just putting it here so that others can try it / find issues and help me in writing tests and making this good enough for inclusion.
for anyone else looking into it the main issue here when compared with localStorage / localStorageWrapper is that the chrome API ( chrome.storage.local ) seems to do some kind of internal serialize/deserialize.
I will work on this further and try to implement proper serialization for all data types
I've thought about this more and it's out of scope for localForage to include in its base functionality, but thanks to our custom driver API you could release it as its own module and get users to extend localForage with it.
Sorry for the hassle of you going through a pull request for it, but I think you should release this as your own library and add it to the Wiki. I've created a page for custom drivers and will link to it from the README (#325)
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
I've written a basic driver for using chrome.storage.local inside Chrome Packaged Apps. It works pretty well for my application but it's kind of hacky in places.
Just putting it here so that others can try it / find issues and help me in writing tests and making this good enough for inclusion.
requested in #43
chrome storage API : https://developer.chrome.com/extensions/storage