Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I currently creating some experimental projects with nodejs. I have programmed a lot Java EE web applications with Spring and appreciated the ease of dependency injection there.

Now I am curious: How do I do dependency injection with node? Or: Do I even need it? Is there a replacing concept, because the programming style is different?

I am talking about simple things, like sharing a database connection object, so far, but I have not found a solution that satisfies me.

share|improve this question

4 Answers

up vote 18 down vote accepted

In short, you don't need a dependency injection container or service locater like you would in C#/Java. Since Node.js, leverages the module pattern, it's not necessary to perform constructor or property injection. Although you still can.

The great thing about JS is that you can modify just about anything to achieve what you want. This comes in handy when it comes to testing.

Behold my very lame contrived example.

MyClass.js:

var fs = require('fs');

MyClass.prototype.errorFileExists = function(dir) {
    var dirsOrFiles = fs.readdirSync(dir);
    for (var d in dirsOrFiles) {
        if (d === 'error.txt') return true;
    }
    return false;
};

MyClass.test.js:

describe('MyClass', function(){
    it('should return an error if error.txt is found in the directory', function(done){
        var mc = new MyClass();
        assert(mc.errorFileExists('/tmp/mydir')); //true
    });
});

Notice how MyClass depends upon the fs module? As @ShatyemShekhar mentioned, you can indeed do constructor or property injection as in other languages. But it's not necessary in Javascript.

In this case, you can do two things.

You can stub the fs.readdirSync method or you can return an entirely different module when you call require.

Method 1:

var oldmethod = fs.readdirSync;
fs.readdirSync = function(dir) { 
    return ['somefile.txt', 'error.txt', 'anotherfile.txt']; 
};

*** PERFORM TEST ***
*** RESTORE METHOD AFTER TEST ****
fs.readddirSync = oldmethod;

Method 2:

var oldrequire = require
require = function(module) {
    if (module === 'fs') {
        return {
            readdirSync: function(dir) { 
                return ['somefile.txt', 'error.txt', 'anotherfile.txt']; 
            };
        };
    } else
        return oldrequire(module);

}

The key is to leverage the power of Node.js and Javascript. Note, I'm a CoffeeScript guy, so my JS syntax might be incorrect somewhere. Also, I'm not saying that this is the best way, but it is a way. Javascript gurus might be able to chime in with other solutions.

Update:

This should address your specific question regarding database connections. I'd create a separate module for your to encapsulate your database connection logic. Something like this:

MyDbConnection.js: (be sure to choose a better name)

var db = require('whichever_db_vendor_i_use');

module.exports.fetchConnection() = function() {
    //logic to test connection

    //do I want to connection pool?

    //do I need only one connection throughout the lifecyle of my application?

    return db.createConnection(port, host, databasename); //<--- values typically from a config file    
}

Then, any module that needs a database connection would then just include your MyDbConnection module.

SuperCoolWebApp.js:

var dbCon = require('./lib/mydbconnection'); //wherever the file is stored

//now do something with the connection
var connection = dbCon.fetchConnection(); //mydbconnection.js is responsible for pooling, reusing, whatever your app use case is

//come TEST time of SuperCoolWebApp, you can set the require or return whatever you want, or, like I said, use an actual connection to a TEST database. 

Do not follow this example verbatim. It's a lame example at trying to communicate that you leverage the module pattern to manage your dependencies. Hopefully this helps a bit more.

share|improve this answer
Thanks a lot, very detailed! So if I was to store the open database connection I would probably have to pollute the global namespace and store this in global.db? – Erik Feb 13 '12 at 4:43
You definitely wouldn't pollute the global namespace, at least for server side Node.js. In your module, I'd just connect to the database upon initialization. Then during testing, you would follow my method 2 or specifically connect to a testing db when NODE_ENV is set to test or testing. Does that make sense? In most cases, you should definitely not pollute the global namespace. You kind of have to throw out what you know about design patterns with C++/C#/Java and embrace the simplicity of JS. – JP Richardson Feb 13 '12 at 5:13
Okay, but should every module then create its own database connection? – Erik Feb 13 '12 at 8:14
I've updated the answer. Does it help? – JP Richardson Feb 13 '12 at 18:44
Helps, thanks a lot! – Erik Feb 15 '12 at 12:45
show 5 more comments

I've also written a module to accomplish this, it's called rewire. Just use npm install rewire and then:

var rewire = require("rewire"),
    myModule = rewire("./path/to/myModule.js"); // exactly like require()

// Your module will now export a special setter and getter for private variables.
myModule.__set__("myPrivateVar", 123);
myModule.__get__("myPrivateVar"); // = 123


// This allows you to mock almost everything within the module e.g. the fs-module.
// Just pass the variable name as first parameter and your mock as second.
myModule.__set__("fs", {
    readFile: function (path, encoding, cb) {
        cb(null, "Success!");
    }
});
myModule.readSomethingFromFileSystem(function (err, data) {
    console.log(data); // = Success!
});

I've been inspired by Nathan MacInnes's injectr but used a different approach. I don't use vm to eval the test-module, in fact I use node's own require. This way your module behaves exactly like using require() (except your modifications). Also debugging is fully supported.

share|improve this answer
Old question, but I am happy to see people actually work in this! Thanks! – Erik Jun 4 '12 at 12:38

It depends on the design of your application. You can obviously do a java like injection where you create an object of a class with the dependency passed in the constructor like this.

function Cache(store) {
   this._store = store;
}

var cache = new Cache(mysqlStore);

If you are not doing OOP in javascript, you can make an init function that sets everything up.

However, there is another approach that you can take which is more common in an event based system such as node.js. If you can model you application to only(most of the time) act on events then all you need to do is to set everything up(which I usually do by calling an init function) and emit events from a stub. This makes testing fairly easier and readable.

share|improve this answer
Thanks for your answer, but I don't fully understand your second part of your answer. – Erik Feb 12 '12 at 19:26

I think @JPRichardson not right - because require('ModuleB') from code of ModulA. Set dependency of 'ModuleA' on certain 'ModuleB'. But with DI we looking for invertion dependency.

Now I have only solution: inject the dependency from the core.js file.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.