Reputation: 636
I wonder about the best way to implement offline possiblities for a web application. I have searched the web but couldn't figured out what currently the best way is to create a web application offline (and will work in the future)
The lay-out of the web application i can save with Offline Application Caching...
But the problem is that i have a lot of key-value data that i need to store offline. With localStorage, sessionStorage the limit to save data offline is 5MB...And that's not enough...
I seach for the following things:
Is it possible to increase the Offline Application Caching and save the key-value data in a text format witch offline application caching??
Upvotes: 2
Views: 1120
Reputation: 10296
https://github.com/marcuswestin/store.js is mature (~2 years), still updated and works in an amazing array of browsers.
Upvotes: 1