Top "Local-storage" questions

LocalStorage is a way to store persistent data using JavaScript (see also: SessionStorage).

Scope of sessionStorage and localStorage

I read some documentation on sessionStorage and localStorage, but I don't understand what the scope is: the domain, a specific …

javascript html local-storage sessionstorage
How to retrieve all localStorage items without knowing the keys in advance?

I want to show all of the keys and storage written before. My code is below. I created a function (…

javascript local-storage
HTML5 localStorage size limit for subdomains

HTML5's localStorage databases are usually size-limited — standard sizes are 5 or 10 MB per domain. Can these limits be circumvented by …

html subdomain limit local-storage
How to access localStorage in node.js?

I tried searching the web for a node module that can access the client's localStorage but wasn't able to find …

node.js local-storage
How persistent is localStorage?

I'm depending heavily on localStorage for a plugin I'm writing. All the user settings are stored in it. Some settings …

javascript persistence local-storage persistent-storage
How can I show all the localStorage saved variables?

I want to acess all the localStorage variables saved on a specific page. How do I do that? I want …

javascript html local-storage
Firefox addon to view/edit/create localStorage data?

Is there an addon that allows you to view, edit, localStorage information? If there is and it works as an …

firefox firebug firefox-addon local-storage
Local storage vs AngularJS $cacheFactory

I have a problem of storing a lot of client-side data, and I can't decide which way is better. Now …

javascript angularjs local-storage
In HTML5, is the localStorage object isolated per page/domain?

Is the HTML5 localStorage object isolated per page/domain? I am wondering because of how I would name localStorage keys. …

javascript html local-storage
Javascript; communication between tabs/windows with same origin

I have two windows: window A and window B. window A and window B have same domain window A and …

javascript html web-applications local-storage postmessage