TypeScript: Sync variables with localStorage https://www.npmjs.com/package/webstorage-decorators
Go to file
2019-05-09 14:26:06 -04:00
lib Init 2018-05-03 15:07:59 -04:00
src Changed syntax in hope of IE fix 2018-05-07 14:33:50 -04:00
.gitignore Init 2018-05-03 15:07:59 -04:00
index.ts Init 2018-05-03 15:07:59 -04:00
package-lock.json Added tests 2018-05-03 15:15:20 -04:00
package.json Changed syntax in hope of IE fix 2018-05-07 14:33:50 -04:00
README.md Update README.md 2019-05-09 14:26:06 -04:00
tsconfig.json Added tests 2018-05-03 15:15:20 -04:00

WebStorage

A Javascript library that adds property decorators to sync a class property with the local & session storage. It also includes crypto-js so that sensitive information being stored on the client is not stored in plain text.

Quick Setup

  1. Install with: npm install --save webstorage-decorators crypto-js
  2. Add the decorator to your property and you are done!
import {LocalStorage, SessionStorage} from 'webstorage-decorators';

export class SomeComponent {

 @LocalStorage({
   fieldName: 'customName',
   encryptionKey: settings.encryptionToken,
   defaultValue: 123
 })
 someProperty;
 
 @SessionStorage(/* Accepts same optional paramters as the LocalStorage*/) user;
 
 constructor(user) {
   // This property will get its vallue from the local storage or default to 123 if the property doesn't exist
   console.log(this.someProperty)
 
   // Because of our SessionStorage decorator the user is automatically stored in the session storage
   this.user = user  
 }
}