Varie provides a service that interacts with local storage.
To set something in to the storage :
this.storageService.set("token", token);
To get something in to the storage :
let token = this.storageService.get("token");
To remove something in to the storage :
this.storageService.remove("token");