up vote 46 down vote favorite
44
share [g+] share [fb]

What is the simplest/cleanest way to implement singleton pattern in JavaScript?

link|improve this question

feedback

protected by Robert Harvey Jan 11 at 18:04

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

4 Answers

up vote 73 down vote accepted

I think the easiest way is to declare a simple object literal:

var myInstance = {
  method1: function () {
    // ...
  },
  method2: function () {
    // ...
  }
};

If you want private members on your singleton instance, you can do something like this:

var myInstance = (function() {
  var privateVar = '';

  function privateMethod () {
    // ...
  }

  return { // public interface
    publicMethod1: function () {
      // all private members are accesible here
    },
    publicMethod2: function () {
    }
  };
})();

This is has been called the module pattern, it basically allows you to encapsulate private members on an object, by taking advantage of the use of closures.

link|improve this answer
+1 Nicely done. – Andrew Hare Sep 25 '09 at 20:10
Thanks @Andrew! – CMS Sep 25 '09 at 20:45
3  
+1 Isn't it a bit strange to look for a "Singleton pattern" in a language with global variables??? – Victor Oct 28 '09 at 9:18
1  
Using the module pattern, how would a public member access another public member? I.e., how would publicMethod1 call publicMethod2? – typeof Apr 26 '11 at 21:50
1  
@Tom, yeah, the pattern was born on class-based OOP languages -I remember a lot of implementations that involved a static getInstance method, and a private constructor-, but IMO, this is the most "simple" way to build a singleton object in Javascript, and at the end it meets the same purpose -a single object, that you can't initialize again (there's no constructor, it's just an object)-. About the code you linked, it has some problems, swap the a and b variable declarations and test a === window. Cheers. – CMS Jul 18 '11 at 15:40
show 4 more comments
feedback

I think the cleanest approach is something like:

var SingletonClass = (function(){
    function SingletonClass() {
        //do stuff
    }
    var instance;
    return = {
        getInstance: function(){
            if (instance == null) {
                instance = new SingletonClass();
                // Hide the constructor so the returned objected can't be new'd...
                instance.constructor = null;
            }
            return instance;
        }
   };
})();

and you can invoke the function as

var test = SingletonClass.getInstance();
link|improve this answer
1  
That's what I want, thanks! – Yang Bo Oct 24 '11 at 3:42
feedback

There is more than one ways to skin a cat :) Depending on your taste or specific need you can apply any of the proposed solutions. I personally go for CMS' first solution whenever possible (when you don't need privacy). Since the question was about the simplest and cleanest, that's the winner. Or even:

var myInstance = {}; // done!

This (quote from my blog) ...

var SingletonClass = new function() { 
    this.myFunction() { 
        //do stuff 
    } 
    this.instance = 1; 
}

doesn't make much sense (my blog example doesn't either) because it doesn't need any private vars, so it's pretty much the same as:

var SingletonClass = { 
    myFunction: function () { 
        //do stuff 
    },
    instance: 1 
}
link|improve this answer
feedback

Usually module pattern (see CMS' answer) which is NOT singleton pattern is good enough. However one of the features of singleton is that its initialization is delayed till object is needed. Module pattern lacks this feature.

My proposition (CoffeeScript):

window.singleton = (initializer) ->
  instance = undefined
  () ->
    return instance unless instance is undefined
    instance = initializer()

Which compiled to this in JavaScript:

window.singleton = function(initializer) {
    var instance;
    instance = void 0;
    return function() {
        if (instance !== void 0) {
            return instance;
        }
        return instance = initializer();
    };
};

Then I can do following:

window.iAmSingleton = singleton(function() {
    /* This function should create and initialize singleton. */
    alert("creating");
    return {property1: 'value1', property2: 'value2'};
});


alert(window.iAmSingleton().property2); // "creating" will pop up; then "value2" will pop up
alert(window.iAmSingleton().property2); // "value2" will pop up but "creating" will not
window.iAmSingleton().property2 = 'new value';
alert(window.iAmSingleton().property2); // "new value" will pop up

Note that proposed solution is not thread-safe. It will work great in browser but it may need improvements if window.iAmSingleton function is intended to be shared among threads.

link|improve this answer
feedback

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