Skip to content
A simple IoC service locator for javascript
JavaScript
Find file
Latest commit c53230c @tgriesser npm version bump
Failed to load latest commit information.
test adding ioc.alias, other cleanup
.gitignore initial commit
.travis.yml initial commit
README.md adding ioc.alias, other cleanup
index.js initial commit
ioc.js npm version bump
package.json npm version bump

README.md

ioc.js

Build Status

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

Something went wrong with that request. Please try again.