Skip to content

Latest commit

 

History

History
21 lines (14 loc) · 484 Bytes

README.md

File metadata and controls

21 lines (14 loc) · 484 Bytes

huge-async-storage

A wrapper of AsyncStorage that allows you to store huge data on react-native.

Installation

yarn add huge-async-storage

Usage

import {storeAsync, getAsync, removeAsync} from "huge-async-storage";

.....

await storeAsync(`value1`, {value: Array(1000000).fill(1)}); // store huge data
const value1 = await getAsync(`value1`); // to get the value by key
await removeAsync(`value1`); // to remove the value