vote up 2 vote down star

What neat ways do you use for declaring JavaScript namespaces. I've come across this one:

if (Foo == null || typeof(Foo) != "object") { var Foo = new Object();}

Is there a more elegant or succinct way of doing this?

Just a bit of fun...

flag

1  
I can see where you're going with the checking to see if the namespace is taken, but since the object will not be created if this fails I think the better approach is to alert if the namespace is taken. Frankly this should just not happen in most JS situations and should be caught quickly in development. – annakata May 19 at 8:54

5 Answers

vote up 5 vote down check

I like this:

var yourNamespace = {

    foo: function() {
    }

    bar: function() {
    }
}

...

yourNamespace.foo();
link|flag
The important point is to be religious about expanding no further than the one root variable. Everything must flow from this. – annakata May 19 at 8:54
vote up 1 vote down

http://code.google.com/p/namespacedotjs/wiki/HowTo

You gotta check that out!! :D

link|flag
vote up 1 vote down

Another way to do it, which I consider it to be a little bit less restrictive than the object literal form, is this:

var ns = new function() {

    var internalFunction = function() {

    };

    this.publicFunction = function() {

    };
};

The above is pretty much like the module pattern and whether or not you like it, it allows you to expose all your functions as public, while avoiding the rigid structure of an object literal.

link|flag
1  
It's kind of blindsided me that anyone wouldn't love OLN. I just... what's not to love? What's so rigid? – annakata May 19 at 8:50
1  
1. There's a difference between OLN and the module pattern. 2. I don't /always/ like OLN as you have to remember to not put the last trailing comma and all your attributes must be initialized with a value (like null or undefined). Also, if you need closures for member functions, you will need small function factories for each of those methods. Another thing is that you must enclose all your control structures inside functions, whereas the above form does not impose that. That's not to say that I don't use OLN, is just that sometimes I don't like it. – Ionut G. Stan May 19 at 9:21
vote up 2 vote down

I use this approach:-

var myNamespace = {}
myNamespace._construct = function()
{
    var staticVariable = "This is available to all functions created here"

    function MyClass()
    {
       //Depending on the class may build all the class here
       this.publicMethod = function()
       {
          //Do stuff
       }
    }
    //Alternatively may use prototype
    MyClass.prototype.altPublicMethod = function()
    {
        //Do stuff
    }

    function privateStuff()
    {
    }

    function publicStuff()
    {
       //code that may call other public and private functions
    }

    //List of things to place publically
    this.publicStuff = publicStuff
    this.MyClass = MyClass
}
myNamespace._construct()

//The following may or may not be in another file
myNamespace.subName = {}
myNamespace.subName._construct = function()
{
   //build namespace
}
myNamespace.subName._construct()

External code can then:-

var myClass = new myNamespace.MyClass();
var myOtherClass = new myNamepace.subName.SomeOtherClass();
myNamespace.subName.publicOtherStuff(someParameter);
link|flag
vote up 1 vote down

or try this approach:

http://weblogs.asp.net/mschwarz/archive/2005/08/26/423699.aspx

link|flag

Your Answer

Get an OpenID
or

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