3.0.2 • Published 7 years ago
angular-2-local-storage v3.0.2
angular-2-local-storage
LocalStorageService for Angular with mostly the same API (and most of the code) from angular-local-storage.
AoT compatible.
Differences
- No events broadcast on $rootScope - LocalStorageService exposes observables for
errors$,removeItems$,setItems$andwarning$if you really need something to happen when something happens. - The
bindfunction doesn't work anymore (there is a stub so this can still be a drop-in, but it'll do nothing).
Install
npm install angular-2-local-storage
Usage
You can optionally configure the module:
import { LocalStorageModule } from 'angular-2-local-storage';
@NgModule({
imports: [
LocalStorageModule.forRoot({
prefix: 'my-app',
storageType: 'localStorage'
})
],
declarations: [
..
],
providers: [
..
],
bootstrap: [AppComponent]
})
export class AppModule { }Then you can use it in a component:
import { LocalStorageService } from 'angular-2-local-storage';
@Component({
// ...
})
export class SomeComponent {
constructor (
private _localStorageService: LocalStorageService
) {
// YAY!
}
}Configuration options
import { ILocalStorageServiceConfig } from 'angular-2-local-storage'; for type information about the configuration object.
3.0.2
7 years ago
3.0.1
7 years ago
3.0.0
7 years ago
2.0.1
7 years ago
2.0.0
8 years ago
1.0.2
8 years ago
1.0.1
9 years ago
1.0.0
9 years ago
0.1.0
9 years ago
0.1.0-beta.0
9 years ago
0.0.25
9 years ago
0.0.24
9 years ago
0.0.23
9 years ago
0.0.22
9 years ago
0.0.21
9 years ago
0.0.20
9 years ago
0.0.19
9 years ago
0.0.18
10 years ago
0.0.17
10 years ago
0.0.16
10 years ago
0.0.15
10 years ago
0.0.14
10 years ago
0.0.13
10 years ago
0.0.12
10 years ago
0.0.5
10 years ago
0.0.4
10 years ago
0.0.3
10 years ago
0.0.2
10 years ago
0.0.1
10 years ago