Loading

Loading modules.js and your site's index.js modules.

<script src="modules.js?./index.js"></script>

Including

Importing names from another module.

include('theModule.js');

Requiring

Getting a module object.

var theModule = require('theModule.js');

Declaring

Declaring an exported item.

this.exportMe = 1;

Hiding

Declaring an item that will not be visible outside your module.

var hideMe = 1;