memory-web-storage

Simple replacement for web storages (i.e. localStorage) with the same API


Keywords
memory, storage, localStorage, sessionStorage
License
MIT
Install
npm install memory-web-storage@1.0.0

Documentation

memory-web-storage

npm version npm

This is a library providing a singleton object with API similar to Web Storage:

  • getItem
  • setItem
  • removeItem
  • clear

default export

Mentioned singleton object.

createStorage(): MemoryStorage

Factory function creating memory storages.

testStorageSupport(type = 'local'): boolean

Meant to be used in browsers for testing storages support. It simply tries to perform most common operations on the storage object and wraps that with try/catch blocks.