Skip to content

Instantly share code, notes, and snippets.

@mattijs
Created April 20, 2011 13:18
Show Gist options
  • Save mattijs/931308 to your computer and use it in GitHub Desktop.
Save mattijs/931308 to your computer and use it in GitHub Desktop.
Coffeescript module singleton
{EventManager} = require 'events'
class CloudManager extends EventEmitter
constructor: (@config) ->
# Do some stuff
instance = null
module.exports = {
getInstance: (config) =>
return instances if instance?
return new CloudManager config
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment