storage-crypter

"Local and Session storage crypter made with crypto-js"

Usage no npm install needed!

<script type="module">
  import storageCrypter from 'https://cdn.skypack.dev/storage-crypter';
</script>

README

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