Loading modules.js and your site's index.js modules.
<script src="modules.js?./index.js"></script>
Importing names from another module.
include('theModule.js');
Getting a module object.
var theModule = require('theModule.js');
Declaring an exported item.
this.exportMe = 1;
Declaring an item that will not be visible outside your module.
var hideMe = 1;