Skip to content

adscott/n-js

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

n.js

Lightweight namespacing for JavaScript. Grab the latest here.

Include it in your document like so:

<script src="/path/to/n.js" type="text/javascript"></script>

Register objects and classes like so:

n('foo.bar.baz', function(s) {
  s.Person = function () {
    this.greet = function () {
      alert('hello');
    };
  };
});

Reference registered objects and classes like so:

var myPerson = new foo.bar.baz.Person();
myPerson.greet();

That's all there is to it!

About

Lightweight JavaScript namespacing

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published