boco-ioc
v2.3.1
Published
Inversion of Control (IOC) & Dependency Injection (DI) for javascript
Downloads
33
Maintainers
Readme
boco-ioc
Inversion of Control & Dependency Injection for javascript.
- Highly configurable
- Supports asynchronous dependency factories as well as promises
- Lazy-loads dependencies
- Automatically maintains dependency cache
Installation
Installation is available via npm
$ npm install boco-ioc
Usage
IOC = require 'boco-ioc'
Promise = require 'bluebird'
# Create a container
container = new IOC.Container
# define a component with a synchronous factory
container.defineComponent 'foo',
factory: -> 'Foo'
# define a component with an asynchronous factory (callback)
container.defineComponent 'bar',
factory: (done) -> done null, 'Bar'
# define a component by returning a promise from your factory
# note: you must set the `factoryType` to 'promise'
container.defineComponent 'baz',
factoryType: 'promise'
factory: -> Promise.resolve 'Baz'
# any string value can be used as your component id
container.defineComponent 'qux/value',
factory: -> 'Qux'
# an array of dependencies gets injected as ordered arguments
container.defineComponent 'joined/foo+bar',
depends: ['foo', 'bar']
factory: (foo, bar) -> foo + bar
# a dependency map gets injected as a single object
container.defineComponent 'joined/bar+baz',
dependencies:
bar: true
baz: true
factory: ({bar, baz}, done) -> done null, bar + baz
# you can specify the id of your components in a dependency map
container.defineComponent 'joined/baz+qux',
dependencies:
baz: true
qux: 'qux/value'
factoryType: 'promise'
factory: ({baz, qux}) -> Promise.resolve baz + qux
Resolving a Component
Given a component name, the container will resolve that component:
container.defineComponent 'joined/all',
dependencies:
fooBar: 'joined/foo+bar'
barBaz: 'joined/bar+baz'
bazQux: 'joined/baz+qux'
factory: ({fooBar, barBaz, bazQux}) ->
fooBar + barBaz + bazQux
container.resolveComponent 'joined/all', (error, result) ->
throw error if error?
expect(result).toEqual 'FooBarBarBazBazQux'
ok()
Loading Components
Load all components from a given directory. The relative path name will be used as the component id.
Path = require 'path'
loader = new IOC.ComponentLoader
componentsDir = './components'
pattern = '**/*(*.coffee)'
loader.load {container, componentsDir, pattern}
container.resolveComponent 'examples/one', (error, result) ->
throw error if error?
expect(result).toEqual 1
Timouts
A ComponentTimedOut
exception will be raised if a component is not resolved within the componentTimeout
period specified.
timeoutContainer = new IOC.Container componentTimeout: 1000
timeoutContainer.defineComponent 'timeout/example',
depends: null
factoryType: 'async'
factory: (done) ->
setTimeout done.bind(null, null, "Should not get here"), 1500
timeoutContainer.resolveComponent 'timeout/example', (error) ->
expect(error.name).toEqual "ComponentTimedOut"
ok()
Events
The container will emit events that you can observe as the components are being resolved.
container = new IOC.Container
componentResolving = false
container.once 'component.resolving', ({key, container}) ->
componentResolving = true
expect(key).toEqual 'events/example'
container.once 'component.resolved', ({key, container, result}) ->
expect(componentResolving).toBe true
expect(key).toEqual 'events/example'
expect(result).toEqual 'example'
ok()
container.defineComponent 'events/example',
factoryType: 'async'
factory: (done) -> done null, 'example'
container.resolveComponent 'events/example', (error) ->
throw error if error?
Copyright (c) 2015 Christian Bradley + Boco Digital Media, LLC
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.