New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

combo-storage

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

combo-storage

The package allows you to manage data in LocalStorage, SessionStorage and Cookies

  • 2.1.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
637
increased by18.4%
Maintainers
1
Weekly downloads
 
Created
Source

combo-storage

Version Build Coverage Minified size Downloads Tested with jest

Table of contents

Installation

You need to install package.

npm install combo-storage

Getting started

You should import the required storage to use the package

import { LocalStorage, SeessionStorage, Cookie } from 'combo-storage'

Then use the methods of storage. For example:

LocalStorage.set('user', 'awibox');

Base methods for LocalStorage and SessionStorage

MethodLocalStorageSessionStorage
setLocalStorage.set(key, value)SessionStorage.set(key, value)
getLocalStorage.get(key)SessionStorage.get(key)
removeLocalStorage.remove(key)SessionStorage.remove(key)
сlearLocalStorage.clear()SessionStorage.clear()

Note: get and set methods are available for working with objects and arrays.

MethodExample
setCookie.set(name, value, days);
getCookie.get(name)
removeCookie.remove(name)

Contributing

Please read through our CONTRIBUTING.md.

Keywords

FAQs

Package last updated on 25 Jun 2022

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