For the module pattern, I'm doing something like:
(function(namespace) {
// tons of code
// blabla
})(window.myGlobalNamespace);
How do I split the code? I can think of a few ways, like use a hierachy of namespaces, or expand the object outside by window.myGlobalNamespace.additionalFunc = function () {//blabla}
. What are the other ways? What are the pros and cons? Which one is considered better practice?
Both of the two answers suggest RequireJS. Can you please explain how RequireJS can solve these problems:
first.js:
(function(context) {
var parentPrivate = 'parentPrivate';
})(window.myGlobalNamespace);
second.js:
(function(context) {
this.childFunction = console.log('trying to access parent private field: ' + parentPriavte);
}(window.myGlobalNamespace.subNamspace);
main.js:
window.myGlobalNamespace.subNamspace.childFunction(); // doesn't work
And people can do
window.myGlobalNamespace.subNamspace.childFunction = function() {alert("a new function");}
to change my code's behaviour!
Here, there are two problems:
We can't have a field that's accessible by child but not to outside public (i.e. protected). Is there any way to achieve that?
If not, meaning if we wanteparentPrivate to be accessible, we need to make it public. Then the user will be able to modify it!
What's more, all the public functions can be altered and replaced. I don't want that to happen.
I don't see how RequireJS solves these problems. Can someone shed some light?
There are only 2 ways to get JavaScript into HTML:
<script> some JavaScript </script>
<script src='main.js'></script>
I know this is obvious but we need that common ground for what comes next. ;)
JavaScript does not have the ability to "import" other JavaScript files into it's self. All the "importing" is done in the HTML. You can do this several ways:
Dynamically link them in through some JavaScript
Library like RequireJS. RequireJS uses Asynchronous Module Definition (AMD) API. It is the JavaScript mechanism for defining modules such that the module and its dependencies can be asynchronously loaded.
It is import to consider reasons for separating JavaScript into separate files.
Separate JavaScript files DO NOT make things Private, Closures make things Private.
Now, consider at the end of the day when everything is ready for production the best thing you could do is Optimize your JavaScript by combining it all into one file so that the user only has one file to download.
When dealing with Private variables in JavaScript, you will at some point want to access them.
Let me illustrate with some code.
module-test.html and main.js (merged first.js, second.js, and main.js for easier testing)
If you want to use RequireJS to accomplish the above, you can. RequireJS uses the Module Pattern which is what you and I are already using. If you want to separate out the files then there are two ways to do this.
NOTE: I haven't had a chance to compare these two options yet but wanted to include them for completeness.
You may find the following references helpful: