Module

This is a function which creates a new module object.
A module automatically registers itself with jsolait upoun creation. Once registered it can be imported with importModule.

module creation

A module can be easyly created by calling:
Module(name, version, moduleScope)
parameters: Example:

Module("myModule", "0.0.1", function(thisMod){
    thisMod.someMethod=function(){
        //do something
    }
})

instance methods

instance properties