react-native-caches
v1.2.0
Published
A react native lib to provide cache size and clear cache feature.
Readme
react-native-caches
A package to get cache size and clear caches.
Installation
yarn add react-native-cachesUsage
import Caches from 'react-native-caches'
const fetchInfo = async () => {
const info = await Caches.getCacheSize()
console.log('fetchInfo', info)
setCacheSize(info.cacheSize)
setCacheUnit(info.unit)
}
const clearCache = async () => {
await Caches.runClearCache()
await fetchInfo()
}TODO
- Add android support
- Add ios support
