Dependency Injection
Angel uses Emil Persson's Container for DI. Dependency injection makes it easier to build applications with multiple moving parts, because logic can be contained in one location and reused at another place in your application.
Adding a Singleton
class MyPlugin extends AngelPlugin {
@override
call(Angel app) async {
app.container.singleton(new SomeClass("foo"));
}
}
class SomeClass {
String text;
SomeClass(this.text);
}You can also inject within a RequestContext.
// Inject types
req.inject(Todo, someTodoInstanceSingleton);
// Or by name
req.inject('database', await databaseProvider.connect('proto://conn-string'));
// Inject into *every* request
app.inject('foo', bar);In Routes and Controllers
As you can imagine, this is very useful for managing things such as database connections.
Dependency-Injected Controllers
Controllers have dependencies injected without any additional configuration by you. However, you might want to inject dependencies into the constructor of your controller.
Last updated