When it comes to storing JSON data within a mobile app, there are limited options in the market such as indexedDB and webSQL.
I am searching for the most reliable solution that is not deprecated and is fully supported by commonly used browsers. The goal is to store my JSON data efficiently and utilize it in a mobile app designed for presentation, demo, or portfolio purposes.
The structure of my static JSON file is as follows:
{
"products": [
.. several records
],
"users": [
... several records
],
"factData": [
... few thousand records
]
}
The main question I have is, which technology or method should be used to securely store the above JSON data without worrying about compatibility with various browsers?