Socket
Socket
Sign inDemoInstall

combo-storage

Package Overview
Dependencies
0
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

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


Version published
Weekly downloads
388
increased by10.86%
Maintainers
1
Install size
24.1 kB
Created
Weekly downloads
 

Changelog

Source

2.1.2 (2022-06-25)

Bug Fixes

  • cookie: The problem with writing to cookie has been solved (#332) (389f86a)

Readme

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

Last updated on 25 Jun 2022

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