Reputation: 7553
Localstorage have storage limit between 5MB to 10MB depends upon browser.My question is,Is there any way to store large json data into external .js file.so we can read/write data as like localstorage??
Upvotes: 1
Views: 419
Reputation: 10857
For PhoneGap (or Apache Cordova), you want to use the file system to write to the file. See the File plugin (https://www.npmjs.com/package/cordova-plugin-file) for more information.
Upvotes: 1