Skip to content

Instantly share code, notes, and snippets.

@hwclass
Created July 2, 2015 08:29
Show Gist options
  • Save hwclass/8020adaef708531c92e6 to your computer and use it in GitHub Desktop.
Save hwclass/8020adaef708531c92e6 to your computer and use it in GitHub Desktop.
Singleton Pattern (base.js)
// base.js
var Config = require(‘models/Config’);
var configInstance = new Config();
var config = configInstance.getConfig();
configInstance = null;
$(‘.error).html(config.messages.errors.default);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment