DEV Community

Himanshu Gupta
Himanshu Gupta

Posted on • Updated on

What is Javascript Singleton Object with example

A singleton object is a design pattern that ensures a class only has a single instance throughout your application. This single instance, also known as the singleton, serves as the central point of access to any data or methods associated with the class.

Implementation Approaches:

Here are two common ways to implement a singleton in JavaScript:

1. Immediately Invoked Function Expression (IIFE):

This approach uses an IIFE to create a closure that encapsulates the singleton instance and its methods. The IIFE executes immediately upon definition, making the instance accessible before it's even declared.

JavaScript
const Singleton = (function() {
  let instance;

  function createInstance() {
    const object = {
      // Define your object properties and methods here
    };
    return object;
  }

  return {
    getInstance: function() {
      if (!instance) {
        instance = createInstance();
      }
      return instance;
    }
  };
})();

// Access the singleton instance
const singletonInstance = Singleton.getInstance();
// Use the instance's methods or properties
singletonInstance.someMethod();
Use code with caution.
Enter fullscreen mode Exit fullscreen mode

2. Module Pattern:

This approach utilizes a module system to define the singleton and export only the public API (the getInstance method). This promotes better organization and maintainability.

JavaScript
// Singleton.js
const Singleton = (function() {
  let instance;

  function createInstance() {
    const object = {
      // Define your object properties and methods here
    };
    return object;
  }

  return {
    getInstance: function() {
      if (!instance) {
        instance = createInstance();
      }
      return instance;
    }
  };
})();

// App.js
// Import the singleton from the module
import { getInstance } from './Singleton';

// Access the singleton instance
const singletonInstance = getInstance();
// Use the instance's methods or properties
singletonInstance.someMethod();
Use code with caution.
Enter fullscreen mode Exit fullscreen mode

Advantages and Considerations:

Global access: Singletons make it easy to access shared data or functionality from anywhere in your code.

State management: They can be helpful for managing global application state.

Careful usage: Overuse of singletons can lead to tight coupling and decreased testability. Consider alternatives like dependency injection or libraries that handle global state management if applicable.

By understanding the singleton pattern and its implementation approaches, you can make informed decisions about when and how to use it effectively in your JavaScript applications.

Thank you for keep reading. If you liked the article, please hit the 👏button; if you want to see more articles follow me😘.

If you have any doubt or suggestion🤔 when going through this practical, please leave us a comment below👌.

See you in upcoming articles😊. Keep in touch with Dev.to. 🤗🤗

Top comments (0)