Socket
Socket
Sign inDemoInstall

capped-local-storage

Package Overview
Dependencies
0
Maintainers
4
Versions
4
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    capped-local-storage

Local storage access layer that allows to remove the oldest entries


Version published
Maintainers
4
Install size
17.9 kB
Created

Readme

Source

capped-local-storage Build Status Greenkeeper badge

Local storage access layer that allows to remove the oldest entries

Install

npm install capped-local-storage --save

Usage

Check the included demo.

Prune old values

var storage = require('capped-local-storage');

var key = 'FOO';
var value = 'BAR';

storage.save(key, value).then(function() {
    console.log('Step 1: Successfully saved ' + key + ' with value ' + value);
}).then(function() {
    console.log('Step 2: Reading value for ' + key + '...');
    return storage.get(key);
}).then(function(readValue) {
    console.log('Step 3: Got "' + readValue + '"');
}).then(function(readValue) {
    console.log('Step 4: Pruning all values...');
    return storage.prune([], 0);
}).then(function() {
    console.log('Step 5: Reading value for ' + key + '...');
    return storage.get(key);
}).then(function(readValue) {
    console.log('Step 6: Got "' + readValue + '"');
});

Delete a value

var storage = require('capped-local-storage');

var key = 'FOO';
var value = 'BAR';

storage.save(key, value).then(function() {
    console.log('Step 1: Successfully saved ' + key + ' with value ' + value);
}).then(function() {
    console.log('Step 2: Reading value for ' + key + '...');
    return storage.get(key);
}).then(function(readValue) {
    console.log('Step 3: Got "' + readValue + '"');
}).then(function(readValue) {
    console.log('Step 4: Removing value...');
    return storage.remove(key);
}).then(function() {
    console.log('Step 5: Reading value for ' + key + '...');
    return storage.get(key);
}).then(function(readValue) {
    console.log('Step 6: Got "' + readValue + '"');
});

Keywords

FAQs

Last updated on 21 Nov 2018

Did you know?

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc