The JavaScript module is a great design pattern for JavaScript coders. It makes code simple to read and easy to use. It allows you to hide private methods inside your module and expose public properties that you want to expose when you use the Revealing Module Pattern. More importantly, you can say bye bye to prototype bloat hell.
Here are a number of useful resources and links for building JavaScript modules:
- How Do You Structure JavaScript? The Module Pattern Edition
- JavaScript module pattern with example
- Mastering the Module Pattern
Example: JavaScript Module Pattern
Here is an example of the JavaScript Module Pattern using the Revealing Module Pattern:
var MyModule = (function() {
// Private variables and functions
var privateVar = 'I am private';
var privateFunction = function() {
console.log(privateVar);
};
// Public variables and functions
var publicVar = 'I am public';
var publicFunction = function() {
console.log(publicVar);
};
// Reveal public pointers to private functions and properties
return {
publicVar: publicVar,
publicFunction: publicFunction
};
})();
// Usage
MyModule.publicFunction(); // Outputs: I am public
console.log(MyModule.publicVar); // Outputs: I am public