Webview cache informations
npm install cordova-plugin-cacheinfoWebview cache informations
iOS only at the moment.
Install the plugin :
cordova plugin add --save cordova-plugin-cacheinfo
``js`
cordova.plugins.CacheInfo.getInfos(function(results) {
console.log(results);
});
returns
`json`
{
"MemoryCache": 849913,
"MemoryCapacity": 134217728,
"DiskCache": 312648,
"DiskCapacity": 536870912
}
reset Safari cache : cordova.plugins.CacheInfo.clear()`
Code distributed under MIT licence. Contributions welcome.