I want to use Local or session storage to save authentication token in angular 2.0.0.
I use angular2-localstorage
Adding onto Bojan Kogoj's answer:
In your app.module.ts, add a new provider for storage.
@NgModule({
providers: [
{ provide: Storage, useValue: localStorage }
],
imports:[],
declarations:[]
})
And then you can use DI to get it wherever you need it.
@Injectable({
providedIn:'root'
})
export class StateService {
constructor(private storage: Storage) { }
}