DI overview

Understand Aurelia's dependency injection concepts and why containers simplify application structure.

Dependency Injection (DI) is a design pattern that allows for creating objects dependent on other objects (their dependencies) without creating those dependencies themselves. It's a way of achieving loose coupling between classes and their dependencies. Aurelia provides a powerful and flexible DI system that can greatly simplify the process of wiring up the various parts of your application.

This document aims to provide comprehensive guidance on using DI in Aurelia, complete with explanations and code examples to illustrate its use in real-world scenarios.

Understanding Dependency Injection

As a system increases in complexity, it becomes increasingly important to break complex code down into groups of smaller, collaborating functions or objects. However, once we’ve broken down a problem/solution into smaller pieces, we have introduced a new problem: how do we put the pieces together?

One approach is to have the controlling function or object directly instantiate all its dependencies. This is tedious but also introduces the bigger problem of tight coupling and muddies the controller's primary responsibility by forcing upon it a secondary concern of locating and creating all dependencies. Inversion of Control (IoC) can be employed to address these issues.

Simply put, the responsibility for locating and/or instantiating collaborators is removed from the controlling function/object and delegated to a 3rd party (the control is inverted).

Typically, this means that all dependencies become parameters of the function or object constructor, making every function/object implemented this way not only decoupled but open for extension by providing different implementations of the dependencies. Providing these dependencies to the controller is called Dependency Injection (DI).

Once again, we’re back at our original problem: how do we put all these pieces together? With the control merely inverted and open for injection, we are now stuck having to manually instantiate or locate all dependencies and supply them before calling the function or creating the object…and we must do this at every function call site or every place that the object is instanced. It seems this may be a bigger maintenance problem than we started with!

Fortunately, there is a battle-tested solution to this problem. We can use a Dependency Injection Container. With a DI container, a class can declare its dependencies and allow the container to locate and provide them to the class. Because the container can locate and provide dependencies, it can also manage the lifetime of objects, enabling singleton, transient and object pooling patterns without consumers needing to be aware of this complexity.

When to Use Which Registration Type?

Before diving into the mechanics, here's a quick guide to help you choose the right registration type:

Default behavior: Dependencies are singleton by default when resolved without explicit registration. You only need @singleton decorator when you want to be explicit or when registering with the container.

Use @singleton (or rely on the default) when:

  • ✅ You need shared state across the entire application

  • ✅ The service manages application-wide resources (configuration, cache, etc.)

  • ✅ The service is expensive to create and should be reused

  • ✅ Examples: CartService, AuthService, ApiClient, ConfigService

Use @transient when:

  • ✅ Each operation needs isolated state

  • ✅ The service is lightweight and cheap to create

  • ✅ You need to avoid shared state between operations

  • ✅ Examples: FileProcessor, Validator, FormBuilder

Use Registration.instance() when:

  • ✅ You have a pre-configured object to inject (like configuration)

  • ✅ You're integrating third-party libraries

  • ✅ You need compile-time values available at runtime

Use optional() when:

  • ✅ The dependency is truly optional (app works without it)

  • ✅ You want to support pluggable features

  • ✅ Examples: Analytics, feature flags, debugging tools

Use lazy() when:

  • ✅ You need a factory function rather than an instance

  • ✅ Instantiation should be delayed until actually needed

  • ✅ You need to create multiple instances with different parameters

Constructor Injection & Declaring Injectable Dependencies

Constructor injection is the most common form of DI. It involves providing the dependencies of a class through its constructor.

Injecting into Plain Classes

In Aurelia 2, use the resolve() function for dependency injection. There are two recommended approaches:

The cleanest and most flexible approach is to use class properties with resolve():

Using Constructor Parameters

You can also use resolve() in constructor parameters:

Creating Containers

An Aurelia application typically has a single root-level DI container. To create one:

  • inheritParentResources copies resource registrations from the parent container, which is useful for shadow DOM scopes or feature modules that need the same value converters and custom elements.

  • defaultResolver changes the implicit registration strategy for unknown classes. The default singleton strategy caches one instance per container; replacing it with DefaultResolver.transient forces a fresh instance per resolve call. Use DefaultResolver.none if you want the container to throw when something tries to resolve a class that has not been registered explicitly.

Child containers can pass the same options to createChild({...}) when they need different behavior than the root.

Registering Services

In Aurelia, services can be registered with the container using the register API:

The register method allows you to associate a key with a value, which can be a singleton, transient, instance, callback, or alias.

Deregister Services

In Aurelia, services can be deregistered from the container using the deregister API:

The deregister method allows you to remove a service from the container.

Resolving Services

Services are usually resolved automatically via constructor injection. However, you can also resolve them manually:

For multiple implementations, use getAll:

Using Interfaces

Since TypeScript interfaces do not exist at runtime, you can use a symbol to represent the interface:

Using DI.createInterface(), you can create an interface token that also strongly types the return value of get:

Default Interface Implementations

DI.createInterface() can take a callback to provide a default implementation:

Keep in mind that default implementations become visible only after the token itself is registered with the container. Resolvers such as optional(ITaskQueue) or resolve(all(ITaskQueue)) do not trigger the default callback until you call container.register(ITaskQueue) (see packages/kernel/src/di.ts for the rationale). This prevents accidental creation of optional services when nothing registered them on purpose.

Property Injection

When inheritance is involved, constructor injection may not suffice. Property injection using the resolve function can be used in such cases:

Other resolve Usages

resolve can also be used in factory functions or other setup logic, and it supports resolving tuples when you pass multiple keys at once:

Remember, resolve must be used within an active DI container context.

Migrating from v1 to v2

For those migrating from Aurelia 1, most concepts remain the same, but it is recommended to create explicit injection tokens with DI.createInterface for better forward compatibility and consumer friendliness.

The IApiClient constant is what you register with the container and later ask for. When you call DI.createInterface you can optionally provide a default registration callback, as shown above, so that the token is automatically wired to a concrete implementation the first time it is requested. If you prefer to register manually you can omit the second argument and use Registration.singleton(IApiClient, ApiClient) instead.

Injecting an Interface

You can inject an interface token using resolve():

You can also use resolve() in constructor parameters:

When you inject via resolve, remember that you are resolving the token value. In the example above IApiClient refers to the token exported from your application code, not to a TypeScript-only interface declaration.

Registration Types

You can explicitly create resolvers and decorators to control how dependencies are registered. Registration ships several helpers (packages/kernel/src/di.registration.ts):

Helper
Description

Registration.instance(key, value)

Always returns the provided object.

Registration.singleton(key, Type)

Lazily constructs one instance per container.

Registration.transient(key, Type)

Creates a fresh instance on every resolution.

Registration.callback(key, fn)

Runs the callback each time; the callback can pull other services from the container.

Registration.cachedCallback(key, fn)

Runs once per container and caches the result.

Registration.aliasTo(existingKey, aliasKey)

Resolves an alias by redirecting to the original key.

Registration.defer(extension, ...params)

Defers registration to another registry (used by the HTML preprocessor for CSS, SVG, etc.).

Example:

Need bespoke construction logic? Use container.registerFactory(...) to plug in a custom factory and container.registerTransformer(...) to decorate resolved instances. The runtime exposes both APIs via IContainer (see packages/kernel/src/di.container.ts for details).

Decorators can also be used to register classes in the root or requesting container:

Customizing Injection

You can customize how dependencies are injected using additional decorators:

Common DI Patterns

Pattern: Singleton Service with State

Use case: You need a service that maintains state across your entire application.

Why this works: Services are singleton by default in Aurelia, so all components automatically share the same CartService instance, maintaining consistent state across the app. You can add @singleton explicitly if you prefer, but it's not required.

Pattern: Service Composition

Use case: You have a high-level service that depends on other services.

Why this works: Service composition lets you build complex functionality from smaller, focused services. Each dependency is resolved automatically.

Pattern: Transient Services

Use case: You need a fresh instance every time (e.g., for isolating state per operation).

Why this works: Each component gets its own instance, preventing state leakage between operations.

Pattern: Optional Dependencies

Use case: You want to use a service if it's available, but don't require it.

Why this works: Your code works whether the optional service is registered or not, making features truly optional.

Pattern: Factory Functions

Use case: You need to create instances with runtime parameters.

Why this works: The lazy() resolver gives you a factory function, delaying instantiation until you need it.

Extending Types for Injection

For injecting objects like Window with additional properties:

Scoped providers with InstanceProvider

When you need to expose a specific instance (such as the current router context or DOM host) to descendants, create an InstanceProvider and register it as the resolver for your token. Aurelia does this internally for controllers, hydration contexts, and router scopes (see packages/runtime-html/src/templating/controller.ts and packages/router/src/route-context.ts).

  • The provider’s prepare method updates the instance at runtime.

  • Passing true as the third argument to registerResolver asks the container to dispose the provider automatically when the child container is destroyed.

By following these guidelines and utilizing the powerful features of Aurelia's DI system, you can build a well-architected application with cleanly separated concerns and easily manageable dependencies.

Last updated

Was this helpful?