Skip to content
This repository was archived by the owner on Jun 12, 2024. It is now read-only.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

74 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

⚠️ Sorry but this package is not longer maintained. With love, the guy who made the package.

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)

// get item with fallback value in case the item is undefined or null
const foo = storageHelper.getItem(storageKey, false, 'foo')

// 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)

Releases

Packages

Used by

Contributors

Languages