This package has been deprecated

Author message:

This package is no longer supported. use at your own risk.

storage-helper
DefinitelyTyped icon, indicating that this package has TypeScript declarations provided by the separate @types/storage-helper package

1.4.1 • Public • Published

Build Status npm version npm

storage-helper

A very simple way to manage browser storage.

If the browser doesn't support localStorage, data will be saved in a cookie. If the browser then doesn't support cookies either (not a lucky day!), it will be saved in a plain object! It also handles the QuotaExceeded error, silently logging it in the console and saving the data in the object.

Installation

npm install storage-helper

Usage

import storageHelper from 'storage-helper'
 
const storageKey = 'foo'
const value = 'bar'
 
// set item
storageHelper.setItem(storageKey, value)
 
// set an item not permanently  
storageHelper.setItem(storageKey, value, false)
 
// get item
const foo = storageHelper.getItem(storageKey)
 
// get item parsed
const foo = storageHelper.getItem(storageKey, true)
 
// remove item
storageHelper.removeItem(storageKey)
 
// remove all items
storageHelper.clear()

It's also possible to export single functions from the module

import { clear } from 'storage-helper'
 
clear()

The logger is by default set to false, so if you want to see logs during development, you can just do like so

import { showStorageLogger } from 'storage-helper'
 
showStorageLogger(true)

Package Sidebar

Install

npm i storage-helper

Weekly Downloads

139

Version

1.4.1

License

ISC

Last publish

Collaborators

  • matteo_gabriele