Chrome storage API vs Dexie.js (IndexedDB)
Anyone using Dexie or something similar instead of the Chrome storage API? Dexie is a wrapper around IndexedDB. I'm considering migrating to using Dexie from the Chrome storage API for a few reasons:
- Dexie has database versioning, making it easier to modify your data structures
- Dexie has the option to sync to the cloud
- Dexie makes it easier to perform queries/search
Potential downsides is that it requires more time and effort to implement.
0 Replies