What are the differences between AngularJS and Angular with respect to dependency injection?

Dependency injection is a common component in both AngularJS and Angular, but there are some key differences between the two frameworks in how it actually works.

AngularJSAngular
Dependency injection tokens are always stringsTokens can have different types. They are often classes and sometimes can be strings.
There is exactly one injector even though it is a multi-module applicationsThere is a tree hierarchy of injectors, with a root injector and an additional injector for each component.

October 22, 2022
142