I would like to keep my JavaScript code modularized in different files, but would like to do so using native JavaScript objects like this:
(function ($, _, val) {
return {
myTest: 'abc',
init: function (options) {...}
};
})(jQuery, _, 'utils/validation');
Is there a script loader that can work like this? I've used RequireJS and don't want to wrap all my several files in define/require (although I really like the idea r.Optimizer). Any help or experience would be greatly appreciated!
If I understand what you are meaning, you want to load a separate JavaScript file after the page is loaded. I have an example that shows how you can have a module spread over multiple files and load additional pieces of that module at later calls. First, a great summary of different module patterns can be found here: Adequately Good: Module Patterns and a very nice code snippet that shows a JavaScript loader can be found here: Loading JS files Asynchronously
My Module's name is
myModule
and it gets three functions during the initial load:addNumbers()
,doOperations()
, anddifNumbers()
. Then after the document is loaded, we store intmp
the answer todoOperations()
. After that, we want to load themultiply.js
script so thatmyModule
has themultNumbers()
function, so we callloadScript()
with the URL to the file, and give it a callback that will print the multiplication to the console.Here is my code:
HTML File
multiply.js