async-service-container v0.0.6
async-service-container
Promise based service container for dependency injection.
Installation
npm install async-service-containerRequirements
- Node.js v7.6.0 or higher
Usage
const { ServiceContainer } = require('async-service-container');
const container = new ServiceContainer();
class MyService {}
container.register([
{
name: 'myService',
service: new MyService(),
},
]);High level API
new ServiceContainer({ property })
Create a new service container.
propertyThe name of the injector property. Default:servicessymbol
register(services)
servicesArray of services to register. Each array element has the following properties:nameThe name to register the service with.serviceThe actual service object.optionsOptional. Options given to the service'sinit(..)method.
Returns a promise which gets resolved when all the services have been initialized. A rejected promise is returned if any service initialization returns a rejected promise.
deregister()
Deinitialize all services in the container.
Returns a promise which gets resolved when all the services have been deinitialized. A rejected promise is returned if any service deinitialization returns a rejected promise.
Injector API
get(name)
Get a service with the given name.
release(name)
Releases the services from this service's dependencies.
inject(object)
Injects the services into the given object.
Low level API
get(name)
Get a promise from the container with the given name.
Rejected promise returned for an invalid name.
set(name, servicePromise)
Set a promise into the container with the given name.
Throws for an invalid name and promise.
getDependencies(name)
Returns dependencies for service registered as name in an array.
createInjector(object)
Creates an injector into the given object.
Returns the created injector.