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

boxcrate

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

boxcrate

A smart wrapper for the browser's localStorage that allows you to set and get items as they are with optional expiration times.

  • 2.1.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

BoxCrate

A smart wrapper for the browser's localStorage that allows you to set and get items as they are with optional expiration times.

NPM version Known Vulnerabilities npm NPM downloads issues license Gitter

Installation

To install this module through npm, simply use the following command:

$ npm install --save boxcrate

To use it as an ES6 module you can either install it through npm or download it directly and import it as so:

import BoxCrate from './node_modules/boxcrate/boxcrate.js';

Initialization

After installing BoxCrate, a new instance can be created like so:

const boxcrate = new BoxCrate();

There are two optional initialization options for BoxCrate which deal with the expiration of data.

If you don't specify a type of expiration check to perform, none will be u sed.

Also note that you can choose to not put an expiration date on any item you set which means it will not expire ever.

paramtypedescriptiondefault
optionsObject
options.expiredCheckTypestringThe type of expiration check to perform. (Either 'passive' or 'active')null
options.expiredCheckIntervalnumberIf you select the passive expiration check type, you can specify the interval of time in which data is checked for expired items.1000

The options for expiredCheckType are as follows:

  1. 'passive': With the type set to 'passive', whenever an item is set to be retrieved from localStorage, it is checked to see if it is expired and if so deleted and never retrieved.

    • Advantage: Very passive type of check, minimal performance cost.

    • Disadvantage: The item could be expired for a long time and still be accessible directly in the localStorage through the browser if the user checks it themselves.

  2. 'active': Every x seconds the localStorage will be checked for expired values and if found, they will be removed.

    • Advantage: Very active type of check, expired values are removed almost instantly.

    • Disadvantage: Performance cost is highest.

API

BoxCrate aims to replicate the API of localStorage so it feels seamless switching over.

storage

Returns a reference to the storage. Note, this should not be modified as it will affect the original storage also.

example:

const storage = boxcrate.storage;

count

Returns the number of items saved in BoxCrate's storage.

example:

const numOfItems = boxcrate.count;

setItem

Set item lets you save an item to BoxCrate's storage using a key, value, and optional expiration time.

One of the advtanges of using BoxCrate is when saving an item to the storage, you can save it as is. Normally with localStorage you can only save strings but BoxCrate lets you save strings, numbers, arrays, and objects as they are and they will be retrieved in the same format.

The only exception to this are Symbols which cannot be saved and retrieved as is as they are unique and when retrieving it the Symbol would not be equal to the original Symbol.

paramtypedescriptiondefault
keystringA unique key to use for the saved item.
valuestringThe item to save.
msToExpirenumberThe time, in milliseconds, until this key value pair should be removed from the storage.

example:

const pizzaToppings = ['Cheese', 'Pepperoni', 'Spinach'];

boxcrate.setItem('toppings', pizzaToppings);

getItem

Retrieve an item from BoxCrate's storage. The item will be retrieved in the same format it was saved.

paramtypedescriptiondefault
keystringThe key of the saved item to retrieve.

example:

const toppings = boxcrate.getItem('toppings');

console.log(toppings);
// => ['Cheese', 'Pepperonoi', 'Spinach']

removeItem

Remove a saved item from the storage by its key.

paramtypedescriptiondefault
keystringThe key of the saved item to remove.

example:

boxcrate.removeItem('toppings');

clear

Remove all saved items from BoxCrate's storage.

example:

boxcrate.clear();

Tests

Since BoxCrate's tests are run in the browser, you have to run:

$ npm run test

and then in your browser, go to http://localhost:8888/test/index.html to run the test suite.

License

MIT

Keywords

FAQs

Package last updated on 19 Apr 2020

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