Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Different between Module Pattern and Singleton Pattern?

I've seen that in some projects, Module Pattern uses instead of Singleton Pattern and vice versa.

I want to know exactly, what's the different between Module Pattern and Singleton Pattern?

like image 590
Afshin Mehrabani Avatar asked Nov 17 '12 09:11

Afshin Mehrabani


People also ask

CAN module be used with singleton?

In javascript we can use module as singleton.

Is Python module a singleton?

Modules are “singletons” in Python because import only creates a single copy of each module; subsequent imports of the same name keep returning the same module object.

What is difference between singleton and dependency injection?

For Dependency Injection, typically you would create an instance of the service outside of the target object (the client) and pass it to the client. For a Singleton, the object instantiates itself only once and you can only get/set properties or use methods of the object; you cannot create a new singleton object.

What is a key difference between the singleton and factory pattern?

A singleton pattern ensures that you always get back the same instance of whatever type you are retrieving, whereas the factory pattern generally gives you a different instance of each type. The purpose of the singleton is where you want all calls to go through the same instance.


1 Answers

Module pattern in javascript refers to the modularisation of code for a common mechanism. It works quite well to split one "class" across several files as you can define constructor and various groups of prototype methods independently. Each of the modules is usually wrapped inside a closure to create static, local variables - this is called revealing module pattern.

Singleton pattern in javascript refers to the restriction of instance creations, often using lazy initialisation.

Of course you can consider the module pattern to be a specialisation of the singleton pattern (see the Wikipedia article), the constructor and its prototype object would take the part of the "single instance" then.

Yet you also could combine them "independently": A module that defines a class which uses the singleton approach.

like image 112
Bergi Avatar answered Nov 15 '22 12:11

Bergi