Why should I use Dependency Injection?

How do JavaScript frameworks use dependency injection?

  • Answer:

    YUI3. With YUI3 you only add the seed file to your DOM. As and when you start using modules, those modules and the modules on which that module depends are fetched automatically at run time. For example YUI().use("node",function(Y){}); Will fetch "node" module and the modules on which "node" depends.

Akshar Prabhu Desai at Quora Visit the source

Was this solution helpful to you?

Other answers

Dependency Injection (DI) is passing the complete library as an object to a function so that the references resolve locally rather than searching the global namespace. Slide 31 to 41 of the presentation http://facebook-programming.blogspot.in/2014/04/getting-started-with-angular-js.html talk ground up about DI. Most of the slides are generic and talk about how DI is achieved in JS. Only last couple of slides are specific to the AngularJS example.

Akshay Mathur

I thought YUI3 is module management, I won't call it dependency injection. The design of YUI is hard to replace windows and document object when unit testing.

Balduran Chang

Related Q & A:

Just Added Q & A:

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.