Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

capped-local-storage

Package Overview
Dependencies
Maintainers
4
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

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

  • 1.1.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
4
Weekly downloads
 
Created
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

Package last updated on 21 Nov 2018

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

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc