Skip to content

Instantly share code, notes, and snippets.

@khlbrg
Last active May 30, 2017 17:55
Show Gist options
  • Save khlbrg/77545b022788ba8d29bedb70aef31608 to your computer and use it in GitHub Desktop.
Save khlbrg/77545b022788ba8d29bedb70aef31608 to your computer and use it in GitHub Desktop.
Example of container
const container = new Container()
const config = {
filename: 'app.log',
rotate: true
}
container.register('config', config)
container.singleton('logger', LoggerClass, ['config'])
container.register('user', User, ['logger'])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment