ioc.js
A simple IoC service locator for javascript
ioc.register(name, callback)
Register an item with the ioc - the item can be any type, callback or otherwise
ioc.replace(name, callback, singleton)
Replaces an item in the registry with the second argument. Pass true as the third argument to register as a singleton
ioc.registerOrReplace(name, callback, singleton)
Registers an item if it doesn't exist yet, replaces it otherwise
ioc.isRegistered(name)
Returns a boolean, whether the name has been registered on the container
ioc.unregister(name)
Removes the item from the registry by name
ioc.singleton(name, callback)
Registers a callback as a singleton. No-op if the second argument isn't a function
ioc.resolve(name, args*)
Resolves the item associated with "name", with any additional arguments used in invoking the callback. The callback will also be called with the context of "ioc".
ioc.ctor(name, args*)
Calls the function associated with "name" as constructor, with any arguments following name passed to the constructor.
License
MIT
