Created
December 11, 2015 10:54
-
-
Save mendaomn/4ee4102a1eea666c1a0d to your computer and use it in GitHub Desktop.
Modules loader - Simple implementation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function(window, document, undefined) { | |
var cheermeup = window.modules.require('salute'); | |
// ... | |
cheermeup.sayHi("Ale"); | |
})(window, document); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Require.js | |
(function(window, document, undefined) { | |
var Require = function() { | |
var modules = {}; | |
function require(name) { | |
var Module = modules[name]; | |
return Module(); | |
} | |
function define(name, module) { | |
modules[name] = module; | |
} | |
return { | |
require: require, | |
define: define | |
}; | |
}; | |
window.modules = Require(); | |
})(window, document); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function(window, document, undefined) { | |
var Module = function() { | |
function sayHi(name) { | |
var name = name || ""; | |
console.log("Hi " + name); | |
} | |
return { | |
sayHi: sayHi | |
}; | |
}; | |
window.modules.define('salute', Module); | |
})(window, document); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment