tsyringe-async
A lightweight dependency injection container for TypeScript/JavaScript for
constructor injection.
This is a fork of tsyringe. The most notable difference
is that resolution of dependencies is asynchronous (via async methods) to allow for asynchronous initialization of
resolved objects after they are constructed.
Installation
Install by npm
npm install --save @launchtray/tsyringe-async
or install with yarn
(this project is developed using yarn
)
yarn add @launchtrary/tsyringe-async
Modify your tsconfig.json
to include the following settings
{
"compilerOptions": {
"experimentalDecorators": true,
"emitDecoratorMetadata": true
}
}
Add a polyfill for the Reflect API (examples below use reflect-metadata). You can use:
The Reflect polyfill import should only be added once, and before DI is used:
import "reflect-metadata";
API
TSyringe performs Constructor Injection
on the constructors of decorated classes.
Decorators
injectable()
Class decorator factory that allows the class' dependencies to be injected at
runtime. TSyringe relies on several decorators in order to collect metadata about classes
to be instantiated.
Usage
import {injectable} from "@launchtray/tsyringe-async";
@injectable()
class Foo {
constructor(private database: Database) {}
}
import "reflect-metadata";
import {container} from "@launchtray/tsyringe-async";
import {Foo} from "./foo";
const instance = container.resolve(Foo);
singleton()
Class decorator factory that registers the class as a singleton within the
global container.
Usage
import {singleton} from "@launchtray/tsyringe-async";
@singleton()
class Foo {
constructor() {}
}
import "reflect-metadata";
import {container} from "@launchtray/tsyringe-async";
import {Foo} from "./foo";
const instance = container.resolve(Foo);
inject()
Parameter decorator factory that allows for interface and other non-class
information to be stored in the constructor's metadata.
Usage
import {injectable, inject} from "@launchtray/tsyringe-async";
interface Database {
}
@injectable()
class Foo {
constructor(@inject("Database") private database?: Database) {}
}
injectAll()
Parameter decorator for array parameters where the array contents will come from the container.
It will inject an array using the specified injection token to resolve the values.
Usage
import {injectable, injectAll} from "@launchtray/tsyringe-async";
@injectable
class Foo {}
@injectable
class Bar {
constructor(@injectAll(Foo) fooArray: Foo[]) {
}
}
scoped()
Class decorator factory that registers the class as a scoped dependency within the global container.
Available scopes
- ResolutionScoped
- The same instance will be resolved for each resolution of this dependency during a single
resolution chain
- ContainerScoped
- The dependency container will return the same instance each time a resolution for this dependency
is requested. This is similar to being a singleton, however if a child container is made, that child
container will resolve an instance unique to it.
Usage
@scoped(Lifecycle.ContainerScoped)
class Foo {}
initializer()
Any methods that this decorator is applied to will be called (and awaited) following construction of
the object but prior to resolution. This allows for asynchronous initialization of an object that is
guaranteed to run before it is injected as a dependency elsewhere.
Initializer methods can also have dependencies injected as arguments, as they are with constructors.
Usage
@injectable()
class Foo {
public value!: string;
@initializer()
async init(): Promise<void> {
value = await API.fetchValue();
}
}
@injectable()
class Bar {
constructor(public foo: Foo) {
}
@initializer()
async init(foo: Foo): Promise<void> {
await db.save(foo.value);
}
}
Container
The general principle behind Inversion of Control (IoC) containers
is you give the container a token, and in exchange you get an instance/value. Our container automatically figures out the tokens most of the time, with 2 major exceptions, interfaces and non-class types, which require the @inject()
decorator to be used on the constructor parameter to be injected (see above).
In order for your decorated classes to be used, they need to be registered with the container. Registrations take the
form of a Token/Provider pair, so we need to take a brief diversion to discuss tokens and providers.
Injection Token
A token may be either a string, a symbol, or a class constructor.
type InjectionToken<T = any> = constructor<T> | string | symbol;
Providers
Our container has the notion of a provider. A provider is registered with the DI
container and provides the container the information
needed to resolve an instance for a given token. In our implementation, we have the following 4
provider types:
Class Provider
{
token: InjectionToken<T>;
useClass: constructor<T>;
}
This provider is used to resolve classes by their constructor. When registering a class provider
you can simply use the constructor itself, unless of course you're making an alias (a
class provider where the token isn't the class itself).
Value Provider
{
token: InjectionToken<T>;
useValue: T
}
This provider is used to resolve a token to a given value. This is useful for registering
constants, or things that have a already been instantiated in a particular way.
Factory provider
{
token: InjectionToken<T>;
useFactory: FactoryFunction<T>;
}
This provider is used to resolve a token using a given factory. The factory has full access
to the dependency container.
We have provided 2 factories for you to use, though any function that matches the FactoryFunction<T>
signature
can be used as a factory:
type FactoryFunction<T> = (dependencyContainer: DependencyContainer) => Promise<T>;
instanceCachingFactory
This factory is used to lazy construct an object and cache result, returning the single instance for each subsequent
resolution. This is very similar to @singleton()
import {instanceCachingFactory} from "@launchtray/tsyringe-async";
{
token: "SingletonFoo";
useFactory: instanceCachingFactory<Foo>(c => c.resolve(Foo))
}
predicateAwareClassFactory
This factory is used to provide conditional behavior upon resolution. It caches the result by default, but
has an optional parameter to resolve fresh each time.
import {predicateAwareClassFactory} from "@launchtray/tsyringe-async";
{
token:
useFactory: predicateAwareClassFactory<Foo>(
c => c.resolve(Bar).useHttps,
FooHttps,
FooHttp
)
}
Token Provider
{
token: InjectionToken<T>;
useToken: InjectionToken<T>;
}
This provider can be thought of as a redirect or an alias, it simply states that given token x,
resolve using token y.
Register
The normal way to achieve this is to add DependencyContainer.register()
statements somewhere
in your program some time before your first decorated class is instantiated.
container.register<Foo>(Foo, {useClass: Foo});
container.register<Bar>(Bar, {useValue: new Bar()});
container.register<Baz>("MyBaz", {useValue: new Baz()});
Registry
You can also mark up any class with the @registry()
decorator to have the given providers registered
upon importing the marked up class. @registry()
takes an array of providers like so:
@registry([
{ token: Foobar, useClass: Foobar },
{ token: "theirClass", useFactory: (c) => {
return new TheirClass( "arg" )
},
}
])
class MyClass {}
This is useful when you want to register multiple classes for the same token.
You can also use it to register and declare objects that wouldn't be imported by anything else,
such as more classes annotated with @registry
or that are otherwise responsible for registering objects.
Lastly you might choose to use this to register 3rd party instances instead of the container.register(...)
method.
note: if you want this class to be @injectable
you must put the decorator before @registry
, this annotation is not
required though.
Resolution
Resolution is the process of exchanging a token for an instance. Our container will recursively fulfill the
dependencies of the token being resolved in order to return a fully constructed object.
The typical way that an object is resolved is from the container using resolve()
.
const myFoo = container.resolve(Foo);
const myBar = container.resolve<Bar>("Bar");
You can also resolve all instances registered against a given token with resolveAll()
.
interface Bar {}
@injectable()
class Foo implements Bar {}
@injectable()
class Baz implements Bar {}
@registry([
{ token: 'Bar', useToken: Foo },
{ token: 'Bar', useToken: Baz },
])
class MyRegistry {}
const myBars = container.resolveAll<Bar>("Bar");
Child Containers
If you need to have multiple containers that have disparate sets of registrations, you can create child containers:
const childContainer1 = container.createChildContainer();
const childContainer2 = container.createChildContainer();
const grandChildContainer = childContainer1.createChildContainer();
Each of the child containers will have independent registrations, but if a registration is absent in the child container at resolution, the token will be resolved from the parent. This allows for a set of common services to be registered at the root, with specialized services registered on the child. This can be useful, for example, if you wish to create per-request containers that use common stateless services from the root container.
Clearing Instances
The container.clearInstances()
method allows you to clear all previously created and registered instances:
class Foo {}
@singleton()
class Bar {}
const myFoo = new Foo();
container.registerInstance("Test", myFoo);
const myBar = container.resolve(Bar);
container.clearInstances();
container.resolve("Test");
const myBar2 = container.resolve(Bar);
const myBar3 = container.resolve(Bar);
Unlike with container.reset()
, the registrations themselves are not cleared.
This is especially useful for testing:
@singleton()
class Foo {}
beforeEach(() => {
container.clearInstances();
});
test("something", () => {
container.resolve(Foo);
});
Circular dependencies
The delay
function in tsyringe for circular dependencies is not currently supported by tsyringe-async.
Thus circular dependencies should be avoided or managed via application-level workarounds.
Full examples
Example without interfaces
Since classes have type information at runtime, we can resolve them without any
extra information.
export class Foo {}
import {Foo} from "./Foo";
import {injectable} from "@launchtray/tsyringe-async";
@injectable()
export class Bar {
constructor(public myFoo: Foo) {}
}
import "reflect-metadata";
import {container} from "@launchtray/tsyringe-async";
import {Bar} from "./Bar";
const myBar = container.resolve(Bar);
Example with interfaces
Interfaces don't have type information at runtime, so we need to decorate them
with @inject(...)
so the container knows how to resolve them.
export interface SuperService {
}
import {SuperService} from "./SuperService";
export class TestService implements SuperService {
}
import {injectable, inject} from "@launchtray/tsyringe-async";
@injectable()
export class Client {
constructor(@inject("SuperService") private service: SuperService) {}
}
import "reflect-metadata";
import {Client} from "./Client";
import {TestService} from "./TestService";
import {container} from "@launchtray/tsyringe-async";
container.register("SuperService", {
useClass: TestService
});
const client = container.resolve(Client);