@ruanitto/ngx-local-storage
TypeScript icon, indicating that this package has built-in type declarations

1.3.9 • Public • Published

@ruanitto/ngx-local-storage

LocalStorageService for Angular with mostly the same API (and most of the code) from angular-local-storage.

AoT compatible.

NEW Feature added

  • Addeded feature to encrypt/decrypt storage data

Differences

  • No events broadcast on $rootScope - LocalStorageService exposes observables for errors$,removeItems$, setItems$ and warning$ if you really need something to happen when something happens.
  • The bind function doesn't work anymore (there is a stub so this can still be a drop-in, but it'll do nothing).

Install

npm install @ruanitto/ngx-local-storage

Usage

You can optionally configure the module:

import { LocalStorageModule } from '@ruanitto/ngx-local-storage';

@NgModule({
    imports: [
        LocalStorageModule.forRoot({
            prefix: 'my-app',
            storageType: 'localStorage',
            encrypt: true,
            encryptKey: 'securekey'
        })
    ],
    declarations: [
        ..
    ],
    providers: [
        ..
    ],
    bootstrap: [AppComponent]
})
export class AppModule { }

Then you can use it in a component:

import { LocalStorageService } from '@ruanitto/ngx-local-storage';

@Component({
    // ...
})
export class SomeComponent {
    constructor (
        private localStorageService: LocalStorageService
    ) {
        // YAY!
    }
}

Configuration options

import { ILocalStorageServiceConfig } from '@ruanitto/ngx-local-storage'; for type information about the configuration object.

Package Sidebar

Install

npm i @ruanitto/ngx-local-storage

Weekly Downloads

20

Version

1.3.9

License

ISC

Unpacked Size

135 kB

Total Files

23

Last publish

Collaborators

  • ruanitto