msluther / storage-engine

EventEmitter abstraction on top the React-Native AsyncStorage API

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

storage-engine

Storage Engine is an abstraction on the AsyncStorage API of React-Native, as stated in their documentation:

It is recommended that you use an abstraction on top of AsyncStorage instead of AsyncStorage directly for anything more than light usage since it operates globally.

So there you go, an abstraction that aims to make working with the AsyncStorage API a bit more developer friendly. The major selling point of this module is the fact that it infuses the EventEmitter pattern with the AsyncStorage API which will allow you to listen to any modification that you make to the storage (while using this module).

Installation

This project is released in the public npm registry and can be installed using:

npm install --save storage-engine

Please note that this module is designed for react-native and therefor has a peerDependency upon it.

Usage

The StorageEngine will emit an event with the name of the key as event name. This allows you to subscribe to any operation that might affect the key.

import StorageEngine from 'storage-engine';

const storage = new StorageEmitter();

//
// Subscribe to changes to the `foobar` key.
//
storage.on('foobar', (action, ...args) => {
  if (action === 'setItem') {
    console.log('foobar has been updated to', ...args);
  }
});

await storage.setItem('foobar', 'what is going on');

The following API methods are available:

getItem

Retrieve the item from async Storage. It accepts the following arguments:

  • name (string), Name of the key that needs to be retrieved.

If no value is found, null will be returned instead.

const name = await storage.getItem('name');
console.log(name); // what ever value was stored.

setItem

Store the item from async Storage. It accepts the following arguments:

  • name (string), Name of the key that needs to be retrieved.
  • value (Object), Value that needs to be stored.
await storage.setItem('name', 'value');

const name = await storage.getItem('name');
console.log(name); // value
await storage.setItem('name', { object: 'value' });

const name = await storage.getItem('name');
console.log(name); // { object: 'value' }

removeItem

Removes the item from async Storage. It accepts the following arguments:

  • name (string), Name of the key that needs to be removed.
await storage.removeItem('name');

const name = await storage.getItem('name');
console.log(name); // null

mergeItem

It merges the given value with the previous stored value. It accepts the following arguments:

  • name (string), Name of the key that needs to be removed.
  • value, (string), Value that needs to be merged.
await storage.setItem('name', '{"bar":"baz"}');
await storage.mergeItem('name', '{"foo":"bar"}');

const name = await storage.getItem('name'); // { bar: baz, foo: bar }

clear

Removes all items from async Storage.

await storage.clear();

flushGetRequests

Flushes any pending requests using a single batch call to get the data.

await storage.flushGetRequests();

multiGet

license

MIT

About

EventEmitter abstraction on top the React-Native AsyncStorage API

License:MIT License


Languages

Language:JavaScript 100.0%