This package has been deprecated

Author message:

Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.

storage-crypter
TypeScript icon, indicating that this package has built-in type declarations

2.3.3 • Public • Published

Storage-Crypter 🚀

Language: TypeScript Version NPM

Storage-Crypter is a light and simple library made with crypto-es that allow you to encrypt and decrypt the values present in your Local or Session Storage

Install

You can install it through the npm packet manager typing

npm i storage-crypter

Usage

It is very simple to use and you can use it with vanilla JavaScript or with Framework like Angular o library like React.

Set Item

It Allows you to set the pair key value inside the store (the default value of the storage is session but you can change it to local)

setItem(key, value, (storage = 'session'));

Get Item

It Allows you to get the value associated at the given key (the default value of the storage is session but you can change it to local) if empty it will return an empty string

getItem(key, (storage = 'session'));

Remove Item

It Allows you to remove the pair key value associated at the given key from the storage (the default value of the storage is session but you can change it to local)

removeItem(key, (storage = 'session'));

Switch Items

It Allows you to switch the pair key value associated at the given key from/to local/session Storage (if the operation is successful return true else false)

switchFromLocal(key);
switchFromSession(key);

Examples 🔭

import { StorageCrypter } from 'storage-crypter';
/** Initialize the class with your secret key */
const storageCrypter = new StorageCrypter('Secret');
/** local storage */
const set = () => storageCrypter.setItem('example', 'value', 'local');
const remove = () => storageCrypter.removeItem('example', 'local');
const get = () => console.log(storageCrypter.getItem('example', 'local'));
storageCrypter.switchFromLocal('example');
/** session storage */
const set = () => storageCrypter.setItem('example', 'value');
const remove = () => storageCrypter.removeItem('example');
const get = () => console.log(storageCrypter.getItem('example'));
storageCrypter.switchFromSession('example');

Demo 🔭

Angular

Stackblitz

React

Stackblitz

Package Sidebar

Install

npm i storage-crypter

Weekly Downloads

1

Version

2.3.3

License

ISC

Unpacked Size

7.58 kB

Total Files

4

Last publish

Collaborators

  • raycas