Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
April 22, 2021 12:48 am GMT

What is localStorage?

I have encountered utilizing localStorage in one of my projects back when I was in coding bootcamp. I knew of its existence when we were taught of using it to persist data for JWT authentication and that is all I knew of it.

Little did I know there is more usage of localStorage than tokens!
Let's take a quick look together and learn a little bit of what is localStorage?

Methods:

MethodFunction
setItem(key, value).Sets the key-value pair you want to store.
removeItem(name)remove the name-value pair identified by name.
getItem(name)get the value for a given name.
key(index)get the name of the value in the given numeric position.
clear()remove all values.
lengthto get the number of key-value pairs

The localStorage can store only strings for its values. It automatically converts non-string data into a string before storing it.

An example of that is this:
Retrieving data from localStorage

When you retrieve data from a Storage object, youll always get the data as a string. Same with sessionStorage and Cookies. You can also store objects in the localStorage. We would just have to use JSON.stringify() to store the object.

Example:
Storing objects in localStorage
Like as you can see, once stored, the whole object turns into a string even when trying to get the data back. But this data can be converted back to an object by using JSON.parse().

Just like this;
JSON parse

Capacity & Usage

Some say that most modern web browsers allow you to store up to 5MB, while others say it's close to unlimited.

When it comes to storing data, localStorage keeps it until the browser is closed or until you run the localStorage.clear() command.

On my previous project, I used localStorage.clear() when the user logs out of the web app and clears out any token stored in the browser.
Check it out here on our handleLogout function;
handleLogout function

I have also used localStorage in one of my React app projects to manage the theme of the page! Since storing the theme of the app didn't need any security requirement, I tried and stored values in there.

Part of the component that toggles the theme is an onClick eventListener that triggers a switchTheme function that contains an if statement & it looks like this;

switchTheme

See that the main use of the localStorage is to really just store key-value pairs which can be used on many other things.

So that is it! I hope you had fun glancing through this blog about localStorage and hopefully helped you in some way in persisting data other than cookies or state.

Do you have any other experience of using localStorage in a different way? Let me know in the comments below! I would love to try them out!


Original Link: https://dev.to/tolentinoel/what-is-localstorage-3ffh

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To