I am new at JavaScript. I wonder how dependency injection is being implemented in JavaScript? I searched the internet but couldn't find anything.
相关问题
- Is there a limit to how many levels you can nest i
- How to toggle on Order in ReactJS
- void before promise syntax
- Keeping track of variable instances
- Can php detect if javascript is on or not?
The first thing we need a configuration to provide necessary dependencies with qualifiers. To do that, we define a dependency set as dependencies in the Injector class. We use dependency set as our container which will take care of our object instances mapped to qualifiers. In order to add new instance with a qualifier to dependency set, we define an add method. Following that, we define get method to retrieve our instance. In this method, we first find the arguments array and then map those arguments to dependencies. After that, we just construct the object with our dependencies and return it. For more information and examples, please see the post on my blog.
You can use AngularJS as an example. Whether it is a good thing, you have to decide for yourself. I wrote a week ago an article about demistifying dependency injection in AngularJS. Here you can read the code from the article:
candiJS is a lightweight implicit dependency injection and object creation library. Have a look
Example:
Let's learn it doing a super simple real world example :)
The example class I am going to talk about here is a
Printer
which needs adriver
to print something. I have demonstrated the advantages of dependency injection design pattern in 4 steps to arrive at the best solution in the end.Case1: no dependency injection used:
usage is simple, it is easy to make a new printer this way but this printer is not flexible.
Case2: abstract the functionalities inside the
print
method into a new class calledDriver
:So our Printer class is now more modular, clean and easy to undrestand but It is not flexible yet again. Any time you use
new
keyword you are actually hard-coding something; in this case you are constructing a driver inside your Printer which in real world is an example of a printer that comes with a built-in driver that can never change!Case3: Inject an already made driver into your printer
A better version is to inject a driver at the time we construct a printer meaning you can make any type of printer, color or black&white, because this time the driver is being made in isolation and outside the Printer class and then given (INJECTED!) into the
Printer
...usage is now different, as a user, in order to have a printer you need to first construct (make) a driver (of your choice!) and then pass this driver to your Printer. It may seem that end user now needs to know a bit more about the system, however this structure gives them more felexibility. Users can pass ANY driver as long as valid! for example let's say we have a BWDriver (black & white) type of driver; user can create a new driver of this type and use that to make a new Printer that prints black and white.
So far so good! But what you think we can do better and what you think has still some room to address here?! I am sure you can see it too!
We are creating a new printer each time we need our printer to print with a different driver! That is because we are passing our driver of choice to the Printer class at the construction time; if user wants to use another driver they need to create a new Printer with that driver; for example if now I want to do a color print I need to do:
Case4: Provide a setter function to set the driver of your printer at ANY TIME!
Dependency Injection is not a really difficult concept to understand. The term may be a bit overloaded but once you have realised its purpose you will find yourself using it most of the time.
I'd say DI is an out-of-the-box feature of JS/ES2015. :-) Of course, it is not full featured IOC containers but looks useful, doesn't it? Check out an example below!
You can wrap dependencies in
_.once
(see underscore or lodash) to turn them into singletons.I coded my own JavaScript Dependency Injection Framework called Di-Ninja https://github.com/di-ninja/di-ninja
It's full featured and is currently the only one in javascript, as I know, that implement Composition-Root design pattern, helping you to keep all things decoupled and to wire application components and config at one unique root place. http://blog.ploeh.dk/2011/07/28/CompositionRoot/
It work well with NodeJS and Webpack
Any feedback would be appreciated