Popular recipes by Mike Koss http://code.activestate.com/recipes/users/4171086/2009-07-12T07:21:40-07:00ActiveState Code RecipesJavascript Namespaces (JavaScript)
2009-07-12T07:21:40-07:00Mike Kosshttp://code.activestate.com/recipes/users/4171086/http://code.activestate.com/recipes/576839-javascript-namespaces/
<p style="color: grey">
JavaScript
recipe 576839
by <a href="/recipes/users/4171086/">Mike Koss</a>
(<a href="/recipes/tags/javascript/">javascript</a>, <a href="/recipes/tags/namespaces/">namespaces</a>).
Revision 2.
</p>
<p>This recipe enables you to modularize javascript libraries by placing all library code within a namespace object. All namespaces are rooted at "window.global_namespace". References between namespaces are supported by the Import function, which allows forward references to namespaces that have yet to be defined.</p>
<p>See code comment for more detailed examples.</p>