async-storage

An asynchronous, persistent, key-value storage system for React Native.

  • 所有者: react-native-async-storage/async-storage
  • 平台:
  • 许可证: MIT License
  • 分类:
  • 主题:
  • 喜欢:
    0
      比较:

Github星跟踪图

React Native Async Storage

An asynchronous, unencrypted, persistent, key-value storage system for React Native.

AsyncStorage v2 is out!

Release Candidate for AsyncStorage v2 is out. More info can be found here..

Getting Started

Install

$ yarn add @react-native-community/async-storage
  • React Native 0.60+

CLI autolink feature links the module while building the app.

  • React Native <= 0.59
$ react-native link @react-native-community/async-storage

Note For iOS using cocoapods, run:

$ cd ios/ && pod install

See docs for manual linking guide

Upgrading to React Native 0.60+

New React Native comes with autolinking feature, which automatically links Native Modules in your project.
In order to get it to work, make sure you unlink Async Storage first:

$ react-native unlink @react-native-community/async-storage

Usage

Import

import AsyncStorage from '@react-native-community/async-storage';

Store data


storeData = async () => {
  try {
    await AsyncStorage.setItem('@storage_Key', 'stored value')
  } catch (e) {
    // saving error
  }
}

Read data


getData = async () => {
  try {
    const value = await AsyncStorage.getItem('@storage_Key')
    if(value !== null) {
      // value previously stored
    }
  } catch(e) {
    // error reading value
  }
}

Advanced

See docs for api and more examples or advanced usages.

Writing tests

Using Jest for testing? Make sure to check out docs on how to integrate it with this module.

Contribution

See the CONTRIBUTING file for how to help out.

License

MIT

主要指标

概览
名称与所有者react-native-async-storage/async-storage
主编程语言TypeScript
编程语言Java (语言数: 12)
平台
许可证MIT License
所有者活动
创建于2019-02-06 15:51:20
推送于2025-06-12 07:58:08
最后一次提交
发布数117
最新版本名称@react-native-async-storage/async-storage@2.2.0 (发布于 2025-06-05 12:15:49)
第一版名称v1.0.0 (发布于 2019-02-11 17:35:53)
用户参与
星数4.9k
关注者数34
派生数477
提交数550
已启用问题?
问题数675
打开的问题数18
拉请求数393
打开的拉请求数1
关闭的拉请求数69
项目设置
已启用Wiki?
已存档?
是复刻?
已锁定?
是镜像?
是私有?