Back to Home

LocalStorage, sessionStorage

Web storage objects localStorage and sessionStorage allow to save key/value pairs in the browser. What’s interesting about them is that the data survives a page refresh (for sessionStorage) and even a full browser restart (for localStorage). We’ll see that very soon. We already have cookies. Why additional objects? - Unlike cookies, web storage objects are not sent to server with each request. Because of that, we can store much more. Most modern browsers allow at least 5 megabytes of data (or more) and have settings to configure that. - Also unlike cookies, the server can’t manipulate storage objects via HTTP headers. Everything’s done in JavaScript. - The storage is bound to the origin (domain/protocol/port triplet). That is, different protocols or subdomains infer different storage objects, they can’t access data from each other. Both storage objects provide the same methods and properties: - setItem(key, value) – store key/value pair. - getItem(key) – get the value by key. - removeItem(key) – remove the key with its value. - clear() – delete everything. - key(index) – get the key on a given position. - length – the number of stored items. As you can see, it’s like a Map collection (setItem/getItem/removeItem), but also allows access by index with key(index). Let’s see how it works.

localStorage demo

The main features of localStorage are: - Shared between all tabs and windows from the same origin. - The data does not expire. It remains after the browser restart and even OS reboot. For instance, if you run this code… …And close/open the browser or just open the same page in a different window, then you can get it like this: We only have to be on the same origin (domain/port/protocol), the url path can be different. The localStorage is shared between all windows with the same origin, so if we set the data in one window, the change becomes visible in another one.

Object-like access

We can also use a plain object way of getting/setting keys, like this: That’s allowed for historical reasons, and mostly works, but generally not recommended, because: 1. If the key is user-generated, it can be anything, like length or toString, or another built-in method of localStorage. In that case getItem/setItem work fine, while object-like access fails:

let key = 'length';
localStorage[key] = 5; // Error, can't assign length
  1. There’s a storage event, it triggers when we modify the data. That event does not happen for object-like access. We’ll see that later in this chapter.

    Looping over keys

    As we’ve seen, the methods provide “get/set/remove by key” functionality. But how to get all saved values or keys? Unfortunately, storage objects are not iterable. One way is to loop over them as over an array: Another way is to use for key in localStorage loop, just as we do with regular objects. It iterates over keys, but also outputs few built-in fields that we don’t need: …So we need either to filter fields from the prototype with hasOwnProperty check: …Or just get the “own” keys with Object.keys and then loop over them if needed: The latter works, because Object.keys only returns the keys that belong to the object, ignoring the prototype.

    Strings only

    Please note that both key and value must be strings. If they were any other type, like a number, or an object, they would get converted to a string automatically: We can use JSON to store objects though: Also it is possible to stringify the whole storage object, e.g. for debugging purposes:

    sessionStorage

    The sessionStorage object is used much less often than localStorage. Properties and methods are the same, but it’s much more limited:

localStorage.setItem('test', 1);
Example:

Follow the lesson from Microsoft Web-Dev-For-Beginners course

Tags: localstorage,session