just-storage

1.0.2 • Public • Published

just-storage

Just localStorage with a memory fallback.

A barebones localStorage module that checks for not only the existance of localStorage, but also checks that localStorage is enabled in the current session. Falls back to memory storage if localStorage isn't supported.

This implementation works in cases like Safari private browsing, where every call to localStorage throws a quota exceeded error.

Also does simple JSON stringify/parse for you.

Sauce Test Status

build status

Install

$ npm install --save just-storage

Usage

var storage = require('just-storage')
 
storage.set('key', { some: 'value' }) // ==> saves and returns { some: 'value' }
storage('key') // ==> { some: 'value' }
 
var tokenStorage = storage.forKey('myJwt')
tokenStorage() // ==> returns current value of 'myJwt'
tokenStorage.set('19dk2924ksdf') // ==> saves new value to 'myJwt'

API

justStorage(key) -> value

key

Required Type: string

The key to load from storage.

Returns value

The value saved for key.

justStorage.set(key, value) -> value

key

Required string

The key you're saving to.

value

Required any

The value you're saving for key.

justStorage.forKey(key) -> keyStorageFn

keyStorageFn() -> value

Returns current saved value for key

keyStorageFn.set(value) -> value
value

Required any

The value you're saving for key.

License

MIT © Andrew Joslin

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 1.0.2
    61
    • latest

Version History

Package Sidebar

Install

npm i just-storage

Weekly Downloads

65

Version

1.0.2

License

MIT

Last publish

Collaborators

  • andytjoslin