Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

storage-engine

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

storage-engine

EventEmitter abstraction on top the React-Native AsyncStorage API

  • 1.0.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
13K
increased by19.84%
Maintainers
1
Weekly downloads
 
Created
Source

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
  • setItem
  • removeItem
  • mergeItem
  • clear
  • flushGetRequests
  • getAllKeys
  • multiGet
  • multiSet
  • multiMerge
  • multiRemove
  • on
  • off
  • listeners

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 (string), Value that needs to be stored.
await storage.setItem('name', 'value');

const name = await storage.getItem('name');
console.log(name); // 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

Keywords

FAQs

Package last updated on 13 Nov 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc