3.0.2 • Published 6 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
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 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
6 years ago
3.0.1
6 years ago
3.0.0
6 years ago
2.0.1
6 years ago
2.0.0
7 years ago
1.0.2
7 years ago
1.0.1
8 years ago
1.0.0
8 years ago
0.1.0
8 years ago
0.1.0-beta.0
8 years ago
0.0.25
8 years ago
0.0.24
8 years ago
0.0.23
8 years ago
0.0.22
8 years ago
0.0.21
8 years ago
0.0.20
9 years ago
0.0.19
9 years ago
0.0.18
9 years ago
0.0.17
9 years ago
0.0.16
9 years ago
0.0.15
9 years ago
0.0.14
9 years ago
0.0.13
9 years ago
0.0.12
9 years ago
0.0.5
9 years ago
0.0.4
9 years ago
0.0.3
9 years ago
0.0.2
9 years ago
0.0.1
9 years ago