Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I currently have the following code in every file under ./routes.

var mongo = require('mongodb');
var config = require('../config/config');

var Server = mongo.Server,
    Db = mongo.Db,

var server = new Server(config.DatabaseConfig.host, config.DatabaseConfig.port, {auto_reconnect: true});
db = new Db('test', server);

db.open(function(err, db) {
    if(!err) {
        console.log("Connected to 'test' database");
        db.collection('testcollection', {safe:true}, function(err, collection) {
        });
    }
});

Is there a way for me to open this connection in a central place? Is it even generally accepted to have each object have its own collection in the database?

share|improve this question

1 Answer

up vote 1 down vote accepted

I open the database once in the main app entry point and don't call app.listen until the database connection is established.

db.open(function(err) { if(!err) app.listen(3000); });

share|improve this answer
The way I finally did it, is attaching db to app.db and module.exports.app = app;. This way this connection is available anywhere app is available. – aaronz Jan 8 at 4:22

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.