Můžete napsat obal, nový modul, kam uložíte instanci db, něco podobného:
//db.js
var HOSTNAME = ...
var PORT = ...
var db = module.exports = {};
var instance;
db.connect = function (){
...
instance = <db_instance>;
};
db.disconnect = function (){
...
instance = null;
};
db.instance = function (){
return instance;
};
Nyní, pokaždé, když potřebujete instanci db, načtěte ji takto:
var db = require ("./path/to/db");
db.instance ();