Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm looking for javascript libraries and code that can simulate localStorage on browsers that do not have native support.

Basically, I'd like to code my site using localStorage to store data and know that it will still work on browsers that don't natively support it. This would mean a library would detect if window.localStorage exists and use it if it does. If it doesn't exist, then it would create some sort of fallback method of local storage, by creating its own implementation in the window.localStorage namespace.

So far, I've found these solutions:

  1. Simple sessionStorage implementation.
  2. An implementation that uses cookies (not thrilled with this idea).
  3. Dojo's dojox.storage, but it is it's own thing, not really a fallback.

I understand that Flash and Silverlight can be used for local storage as well, but haven't found anything on using them as a fallback for standard HTML5 localStorage. Perhaps Google Gears has this capability too?

Please share any related libraries, resources, or code snippets that you've found! I'd be especially interested in pure javascript or jquery-based solutions, but am guessing that is unlikely.

share|improve this question
sessionStorage and localStorage is both part of the Web Storage spec (dev.w3.org/html5/webstorage). Only difference is how long the browser will keep the data. I guess you won't find an implementation where you have one but not the other (but I'm not 100% sure) – rlovtang Jan 14 '11 at 18:26
1  
It's worth mentioning that Gears was officially depriciated last February -- I wouldn't build anything on it. – josh3736 Jan 14 '11 at 20:36
@rlovtang: thanks, I am aware of the difference between session and local storage. According to the 24ways.org article (first link in question, solution #1), Chrome only supports localStorage and not sessionStorage. Perhaps that's no longer the case, as that article was written a while ago. – Tauren Jan 15 '11 at 1:00
@josh3736: yeah, I'd personally like to avoid using cookies and gears. I certainly wouldn't build anything reliant on it, but if it was a fallback storage mechanism for someone who had it installed, and I didn't code directly to it, it could be used. – Tauren Jan 15 '11 at 1:01
so I was actually wrong :) Didn't know Chrome once had support for localStorage but not sessionStorage. Chrome has support for both now at least. – rlovtang Jan 15 '11 at 9:17

10 Answers

up vote 31 down vote accepted

I use PersistJS, which handles client-side storage seamlessly and transparently to your code. You use a single API and get support for the following backends:

  • flash: Flash 8 persistent storage.
  • gears: Google Gears-based persistent storage.
  • localstorage: HTML5 draft storage.
  • whatwg_db: HTML5 draft database storage.
  • globalstorage: HTML5 draft storage (old spec).
  • ie: Internet Explorer userdata behaviors.
  • cookie: Cookie-based persistent storage.

Any of those can be disabled—if, for example, you don't want to use cookies. With this library, you'll get native client-side storage support in IE 5.5+, Firefox 2.0+, Safari 3.1+, and Chrome; and plugin-assisted support if the browser has Flash or Gears. If you enable cookies, it will work in everything (but will be limited to 4 kB).

share|improve this answer
Wow, that looks like a great library. I'll certainly give it a try, thanks! – Tauren Jan 15 '11 at 0:54
this saved my day. – rzr Dec 7 '12 at 0:34

have you seen the polyfill page on the Modernizr wiki?

https://github.com/Modernizr/Modernizr/wiki/HTML5-Cross-browser-Polyfills

look for the webstorage section on that page and you will see 10 potential solutions (as of July 2011).

good luck! Mark

share|improve this answer

JStorage works well. It used LocalStorage when it can, and uses UserData on older browsers.

http://plugins.jquery.com/project/jStorage

share|improve this answer
Thanks for pointing this one out. I'll take a look at it. – Tauren Jan 15 '11 at 0:53

I personally prefer amplify.js. It has worked really well for me in the past and I recommended it for all local storage needs.

supports IE 5+, Firefox 2+, Safari 4+, Chrome, Opera 10.5+, iPhone 2+, Android 2+ and provides a consistent API to handle storage cross-browser

share|improve this answer

store.js uses userData and IE and localStorage on other browsers.

  • It does not try to do anything too complex

  • No cookies, no flash, no jQuery needed.

  • Clean API.

  • 5 kb compressed

https://github.com/marcuswestin/store.js

share|improve this answer

There is realstorage, which uses Gears as a fallback.

share|improve this answer
Thanks. Unfortunately, it looks like it would support fewer browsers than @josh3736's suggestion of PersistJS. I'll still take a look at it, and appreciate the suggestion. – Tauren Jan 15 '11 at 0:56

The MDN page for DOM storage gives several workarounds that use cookies.

share|improve this answer

Pure JS based simple localStorage polyfill:

HTML:

<a href='#' onclick="store.set('foo','bar')">set key: foo, with value: bar</a><br/>
<a href='#' onclick="alert(store.get('foo'))">get key: foo</a><br/>
<a href='#' onclick="store.del('foo')">delete key: foo</a>​

JS:

window.store = {
    localStoreSupport : function() {
        try {
            return 'localStorage' in window && window['localStorage'] !== null;
        } catch (e) {
            return false;
        }
    },
    set : function(name,value,days) {
        if (days) {
            var date = new Date();
            date.setTime(date.getTime()+(days*24*60*60*1000));
            var expires = "; expires="+date.toGMTString();
        }
        else {
            var expires = "";
        }
        if( this.localStoreSupport() ) {
            localStorage.setItem(name, value);
        }
        else {
            document.cookie = name+"="+value+expires+"; path=/";
        }
    },
    get : function(name) {
        if( this.localStoreSupport() ) {
            return localStorage.getItem(name);
        }
        else {
            var nameEQ = name + "=";
            var ca = document.cookie.split(';');
            for(var i=0;i < ca.length;i++) {
                var c = ca[i];
                while (c.charAt(0)==' ') c = c.substring(1,c.length);
                if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
            }
            return null;
        }
    },
    del : function(name) {
        if( this.localStoreSupport() ) {
            localStorage.removeItem(name);
        }
        else {
            this.set(name,"",-1);
        }
    }
}​

http://jsfiddle.net/aamir/S4X35/

share|improve this answer

Just a note here that in my tests with Firefox 15 and 16 if you disable cookies you also disable localStorage. You can't even create a polyfill for it as whenever you try to access window.localStorage you get Error: The operation is insecure.

Throwing a try catch will let you check to see if it's disabled but won't let you replace the variable with your own solution. :/

share|improve this answer

I think a common method is to use cookies and a database. The cookie stores a small user id or something unique to every user, which references to data stored in your database.

This means there is nothing large or important stored within cookies, but still has the benefit of using cookies.

share|improve this answer
2  
This doesn't really address the question. There's a number of legitimate reasons to use client-side storage (which can store megabytes of data) instead of waiting on roundtrips to get data from the server. – josh3736 Jan 14 '11 at 20:40

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.