I am trying to understand how jQuery sets itself up.
Right at the beginning jQuery automatically calls a function, which exports a module.
How does the setup work?
Here some more detailed sub-questions which might answer the the more general question:
- What is the use of the recursive call to function(w)atmodule.exports?
- What is the use of the noGlobalvariable?
- Where is the factoryactually set up and what is its type?
- Why can the factoryargument get called with one argument and with two as well?
- What is the globalargument supposed to contain? (I wish there were a type like in c++...)
(function( global, factory ) {
    if ( typeof module === "object" && typeof module.exports === "object" ) {
        // For CommonJS and CommonJS-like environments where a proper `window`
        // is present, execute the factory and get jQuery.
        // For environments that do not have a `window` with a `document`
        // (such as Node.js), expose a factory as module.exports.
        // This accentuates the need for the creation of a real `window`.
        // e.g. var jQuery = require("jquery")(window);
        // See ticket #14549 for more info.
        module.exports = global.document ?
            factory( global, true ) :
            function( w ) {
                if ( !w.document ) {
                    throw new Error( "jQuery requires a window with a document" );
                }
                return factory( w );
            };
    } else {
        factory( global );
    }
    // Pass this if window is not defined yet
}(typeof window !== "undefined" ? window : this, function( window, noGlobal ) {
 
    