Getting Started
It's possible to use TypeDI without TypesScript, however some of the functionality is limited or not available. These differences are listed below in the Limitations section.
Installation
To start using TypeDI with JavaScript install the required packages via NPM:
Basic usage
The most basic usage is to request an instance of a class definition. TypeDI will check if an instance of the class has been created before and return the cached version or it will create a new instance, cache and return it.
For more advanced usage examples and patterns please read the next page.
Limitations
When registering your dependencies with the Container.set()
method, there are three options available that must be set. Either one of the following are allowed: type
, factory
, or value
but not more than one.
Container.set({ id: ExampleClass, type: ExampleClass});
Container.set({ id: ExampleClass, value: new ExampleClass});
Container.set({ id: ExampleClass, factory: ExampleClass});
To get started quickly, it is recommend to use type
due to the fact that using value
will instantiate the class before it's registered to the TypeDI Container. Using type
will also assure that the TypeDI Container is injected to the constructor.
Last updated