Question

Is it possible to make localStorage and/or IndexedDB offline data permanent?

I am planning to make a completely offline HTML5 app and want the data to never get deleted, unless and otherwise the user knowingly does so.

I do not want the data to be deleted even after the app is closed, system is shutdown or something like CCleaner is run.

Was it helpful?

Solution

What you are looking is persistent storage as defined in Quota Management API. Currently none of the browser implemented it.

However IndexedDB data, even thought temporary storage, are persist over application life cycle.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top