Skip to content
Go back

JavaScript Module Pattern

Published: at 04:05 PM

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:

  1. How Do You Structure JavaScript? The Module Pattern Edition
  2. JavaScript module pattern with example
  3. 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

Suggest Changes

Previous Post
Golden rules for building better software
Next Post
VirtualMin, SSL Perfect Forward Secrecy and StartSSL