Skip to content

Instantly share code, notes, and snippets.

@mendaomn
Created December 11, 2015 10:54
Show Gist options
  • Save mendaomn/4ee4102a1eea666c1a0d to your computer and use it in GitHub Desktop.
Save mendaomn/4ee4102a1eea666c1a0d to your computer and use it in GitHub Desktop.
Modules loader - Simple implementation
(function(window, document, undefined) {
var cheermeup = window.modules.require('salute');
// ...
cheermeup.sayHi("Ale");
})(window, document);
// 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);
(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