react-native-realm-size
v1.0.2
Published
react native package that calculate realm database storage size that it occupies in a system
Downloads
9
Maintainers
Readme
react-native-realm-size
A React Native package to retrieve the size of the Realm database on both Android and ios.
installation
npm install react-native-realm-size
Linking
If using React Native 0.59 and below, linking
react-native link react-native-realm-size
Usage
import {getRealmDatabaseSize} from 'react-native-realm-size';
const sizeInBytes = await getRealmDatabaseSize();
console.log(`Realm database size: ${sizeInBytes} Bytes`)