react-native-storage icon indicating copy to clipboard operation
react-native-storage copied to clipboard

local storage wrapper for both react-native and browser. Support size controlling, auto expiring, remote data auto syncing and getting batch data in one query.

Results 29 react-native-storage issues
Sort by recently updated
recently updated
newest added

https://www.npmjs.com/package/@react-native-community/async-storage This package has been deprecated.

Lots of vulnerabilities are reported while doing npm i. Also cant fix all of them with npm audit fix. This leads to security concerns on this package. Can somebody pls...

### problem Possible Unhandled Promise Rejection (id: 0): Error: database or disk is full (code 13 SQLITE_FULL) ### description I saved an image with the data format base64

Bumps [handlebars](https://github.com/wycats/handlebars.js) from 4.1.1 to 4.7.7. Changelog Sourced from handlebars's changelog. v4.7.7 - February 15th, 2021 fix weird error in integration tests - eb860c0 fix: check prototype property access in...

dependencies

Hello, According to [bundlephobia](https://bundlephobia.com/[email protected]), the package almost doubled in size from 1.0.0 to 1.0.1. In the changelog it just looks like two bug fixes. Just curious if you know what...

-----storage.js----- import Storage from 'react-native-storage'; import AsyncStorage from '@react-native-community/async-storage'; const storage = new Storage({ // 最大容量,默认值1000条数据循环存储 size: 1000, // 存储引擎:对于RN使用AsyncStorage,对于web使用window.localStorage // 如果不指定则数据只会保存在内存中,重启后即丢失 storageBackend: AsyncStorage, // 数据过期时间,默认一整天(1000 * 3600 * 24...

-----storage.js----- import Storage from 'react-native-storage'; import AsyncStorage from '@react-native-community/async-storage'; const storage = new Storage({ // 最大容量,默认值1000条数据循环存储 size: 1000, // 存储引擎:对于RN使用AsyncStorage,对于web使用window.localStorage // 如果不指定则数据只会保存在内存中,重启后即丢失 storageBackend: AsyncStorage, // 数据过期时间,默认一整天(1000 * 3600 * 24...

Fixes this issue: https://github.com/sunnylqm/react-native-storage/issues/245 https://github.com/facebook/react-native/issues/27483

I'm getting this warning in React Native when I have saved more than a few hundred keys and then call `storage.getAllDataForKey`. ``` Excessive number of pending callbacks: 501. Some pending...