0.0.2 • Published 11 years ago

regg v0.0.2

Weekly downloads
95
License
-
Repository
github
Last release
11 years ago

regg - Registry Pattern for JavaScript

regg helps keep your system decoupled by providing a central location where your application information can be found by other parts of you application.

Installation

 npm install regg

Usage

Register your functions, objects, string etc using register(). Once registered with the service locator there is no way to change it.

var regg = require('regg')
var foo = 'bar'
regg.register('foobar', foo)

console.log(regg.get('foobar')) // bar

regg.register('logger', console.bind(console))

regg.logger.get('logger').info('Hello world') // Hello world

Credits

Paul Serby follow me on twitter @serby

Licence

Licenced under the New BSD License