I am trying to make User Authentication with Angular and ASP.NET Core.
I am following the tutorial found here:
https://fullstackmark.com/post/10/user-authent
The standard localStorage API should be available.
No need to declare it.
to set localStorage.setItem('name', 'storingSomething');
localStorage.setItem('name', 'storingSomething');
to get localStorage.getItem('name');
localStorage.getItem('name');