Why should I use Dependency Injection?

What patterns have emerged for dependency injection in Node.JS?

  • Despite how it inspects argument names to resolve it's dependencies, I'm fond of the way AngularJS uses dependency injection to make testing and mocking very convenient. In Node.js however the convention is to require module dependencies privately. Have any recommendable patterns emerged to use dependency injection in Node.js?

  • Answer:

    My recommendation would be to be quite explicit. For instance, if your file defines a constructor, make that constructor accept optional parameters that allow overriding the default modules it uses (such as http or fs). Another option is to play with the require method itself. Proxyrequire (https://npmjs.org/package/proxyquire) is a nice solution for that.

Ruben Verborgh at Quora Visit the source

Was this solution helpful to you?

Other answers

This article http://tech.i.tv/09-17-2013/dependency-injection-in-nodejs/ appeared on September 17th

Jamie Mason

I've been using injct for a while and its been very helpful https://npmjs.org/package/injct You can use Sinon to mock specific functions from modules instead of proxying require

Bruno Fuster

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.