Cookies, Sessions, and LocalStorage are all methods of storing data client-side, and specifically on the user's browser. Why do we have so many dif...
For further actions, you may consider blocking this person and/or reporting abuse
Also probably worth noting that localstorage probably shouldn’t be used for sensitive information (like user passwords session identifies, etc) as it’s susceptible to xss attacks.
What do you think about firebase auth being in
localStorage
by default?Although can be set in cookies as well. I tried, but I failed...
Hmm ideally you don’t wanna be putting any sensitive data in local storage as its openly accessible via JS. What problems did you have with configuring your session via cookies?
csrfToken
from the server? Another HTTPS request, or just js-cookie? There is no form or template rendering here...Encryt both fields to jwt and set it in cookie-session.
May help a bit
dev.to/dpkahuja/learn-and-build-we...
Good point, I'll make an update.
Maybe the size difference could be a part of the comparison table, as in some cases it might be the key factor in one's decision.
Really informative!
I recently had to use localStorage for a voting app I'm working on in .NET
You forgot to add if we use SSR we don’t have an access to the local storage :-( but we can still use cookies
What is a good example for using local storage?