0.1.0 • Published 8 years ago

react-native-storage-wrapper v0.1.0

Weekly downloads
2
License
MIT
Repository
github
Last release
8 years ago

Build Status codecov.io Dependency Status devDependency Status peerDependency Status

react-native-storage-wrapper

A wrapper for React-Native's AsyncStorage.

Install

npm i --save react-native-storage-wrapper

Usage

import storage from "react-native-storage-wrapper";

storage.get("key"); // --> returns a Promise

storage.set("key", "value"); // --> returns a Promise

storage.del("key"); // --> returns a Promise

Usage with asteroid

import {createClass} from "asteroid";
import storage from "react-native-storage-wrapper";

const Asteroid = createClass();
// Connect to a Meteor backend
const asteroid = new Asteroid({
    endpoint: "ws://localhost:3000/websocket",
    storage: storage
});

API

.get("key")

Fetches key from AsyncStorage with method getItem.

Arguments
  • key String required: key to fetch in AsyncStorage
Returns

A Promise object. If there is any, throw an Error


.set("key", "value")

Sets value for key from AsyncStorage with method setItem.

Arguments
  • key String required: key saved in AsyncStorage

  • value String required: value saved in AsyncStorage


.del("key")

Remove item with selected key from AsyncStorage with method removeItem.

Arguments
  • key String required: key to remove from AsyncStorage