1.0.16 • Published 1 month ago

huge-async-storage v1.0.16

Weekly downloads
-
License
MIT
Repository
github
Last release
1 month ago

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
1.0.16

1 month ago

1.0.15

2 months ago

1.0.14

2 months ago

1.0.13

3 months ago

1.0.9

5 months ago

1.0.8

6 months ago

1.0.7

6 months ago

1.0.11

5 months ago

1.0.10

5 months ago

1.0.12

5 months ago

1.0.6

9 months ago

1.0.5

10 months ago

1.0.4

10 months ago

1.0.3

11 months ago

1.0.2

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago