My issue is that I am sure my application will exceed the storage limits set in place by Chrome, does anyone know if the limits can be set through Electron or of a better way to store the data that will work in the following way.
The application is being created using angularJS, jQuery and Bootstrap that needs to sync immediately to an online version of the app as well as to an Ionic app on IOS and Android. It has to be ‘offline first’ so that we can allow users to work offline with no issues and then all records sync from all platforms once the application detects it is online again.
To achieve this sync capability I am using pouchDB locally with couchDB on my main webserver. As far as I can tell pouchDB uses localStorage to store the database.