You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

async-get-set-store

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

async-get-set-store

Async get/set/unset API for one object using localStorage

1.0.2
latest
Source
npmnpm
Version published
Weekly downloads
2.8K
121.32%
Maintainers
1
Weekly downloads
 
Created
Source

async-get-set-store

async get/set/unset API for one object using localStorage

Build Status Coverage Status Dependency Status devDependency Status

Usage

const LocalStorageStore = require('async-get-set-store')
const store = new LocalStorageStore('cache')

// load state
store.cache.get().then(function (state) {})
// set state
store.cache.set({username: 'pat'}).then(function () {})
// clear state
store.cache.unset().then(function () {})

License

Apache 2.0

Keywords

localstorage

FAQs

Package last updated on 19 Dec 2016

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