0.0.4 • Published 8 years ago

ng2-storage v0.0.4

Weekly downloads
3
License
MIT
Repository
github
Last release
8 years ago

ng2-storage

A service wrapping local and session storage for ng2.

Install

npm i -s ng2-storage

Browser Support

This library makes heavy use of ES6 Proxy, meaning it only has support in the latest Edge, Chrome, Firefox, and Opera.

Usage

First, bootstrap the service globally:

import { StorageSettings } from 'ng2-storage';

bootstrap(App, [
  provide(StorageSettings, { useValue: { prefix: 'ng2-storage' } })
]);

Next, inject it into a component:

import { StorageService } from 'ng2-storage';

@Component({
  providers: [StorageService],
  template: `<button (click)="incrementStoredData()">click</button>`
})
export class MyComponent {

  static get parameters() {
    return [[StorageService]];
  }

  constructor(storage) {
    // you can also use storage.session for sessionStorage
    this.storage = storage.local;
  }

  incrementStoredData() {
    this.storage.data = this.storage.data || 0;
    this.storage.data++;
  }
}

Options

NameDefaultDescription
prefix'ng2-storage'The key prefix when assigning data to local or session storage.
serializewindow.JSONUsed when de/serializing data from the storage container. Both serialize and parse attributes must be specified and must be functions if you want custom ones.