Forked from dmnsgn/SingletonDefaultExportInstance.js
Created
November 23, 2019 20:22
-
-
Save NerdyDeedsLLC/29836c838d85b703d1e521ae6d797078 to your computer and use it in GitHub Desktop.
ES6 singleton pattern: module default exports an instance
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class SingletonDefaultExportInstance { | |
constructor() { | |
this._type = 'SingletonDefaultExportInstance'; | |
} | |
singletonMethod() { | |
return 'singletonMethod'; | |
} | |
static staticMethod() { | |
return 'staticMethod'; | |
} | |
get type() { | |
return this._type; | |
} | |
set type(value) { | |
this._type = value; | |
} | |
} | |
export default new SingletonDefaultExportInstance(); | |
// ... | |
// index.js | |
import SingletonDefaultExportInstance from './SingletonDefaultExportInstance'; | |
// Instantiate | |
// console.log(new SingletonDefaultExportInstance); // is not a constructor | |
// Prototype Method | |
console.log(SingletonDefaultExportInstance.type, SingletonDefaultExportInstance.singletonMethod()); | |
// Getter/Setter | |
SingletonDefaultExportInstance.type = 'type updated'; | |
console.log(SingletonDefaultExportInstance.type); | |
// Static method | |
console.log(SingletonDefaultExportInstance.constructor.staticMethod()); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment