Socket
Socket
Sign inDemoInstall

flexible-storage

Package Overview
Dependencies
0
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    flexible-storage

Cache on frontend using LocalStorage


Version published
Weekly downloads
45
increased by221.43%
Maintainers
1
Install size
69.1 kB
Created
Weekly downloads
 

Readme

Source

Flexible Storage

Build Status codecov

Module for front-end storage using LocalStorage (or any another Storage).
It introduces some features:

  • allows choose between localStorage and sessionStorage
  • define expiration date (using Moment or native Date instance)
  • define storage key prefix or filter
  • store any object as JSON
  • written on TypeScript and includes TypeScript definition files

Installation

Using NPM:

npm i --save flexible-cache

Usage

You can use default import to use FlexibleStorage with Local

Instantiating

import { FlexibleStorage } from "flexible-cache";

// Using Session Storage and some string prefix
const sessionFlexibleStorage = new FlexibleStorage(
    window.sessionStorage,
    'some_prefix_' // this prefix will be used internally when working with storage
);

// Using Local Storage and function prefix
const prefix = (key) => "<key>" + key + "</key>";
const FlexibleStorage = new FlexibleStorage(window.localStorage, prefix);

Note: prefix may be skipped

Caching values

import { FlexibleStorage } from "flexible-cache";

const expires = new Date(); // also can be Moment.js instance
const flexibleStorage = new FlexibleStorage(localStorage);

flexibleStorage.push('key', {
    someProperty: 2,
}, expires);

Getting values

import { FlexibleStorage }, { arrayOrEmptyArray } from "flexible-cache";

const flexibleStorage = new FlexibleStorage(localStorage);
// Value will be stored array or empty array if nothing stored
let value = flexibleStorage.pull('key', arrayOrEmptyArray);
// Just to pull value with validating only key expiring
value = flexibleStorage.pull('key');

Find more validators here

Other

import { FlexibleStorage } from "flexible-cache";

const flexibleStorage = new FlexibleStorage(localStorage, 'prefix_');
flexibleStorage.exists('key'); // will try to find and validate `prefix_key` in LocalStorage
flexibleStorage.remove('key'); // will remove `prefix_key` from LocalStorage

Testing

npm test

Author

Alexander Letnikow

Keywords

FAQs

Last updated on 10 Jun 2019

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