Nemůžete zapisovat do exports
poté, co jste opustili soubor. Musíte blokovat. Abych se vyhnul blokování, použil bych líné načítání zdrojů.
var carCol;
var carEmitter = new require("events").EventEmitter;
exports.getCars = function(callback) {
// if no car collection then bind to event
if (carCol === undefined) {
carEmitter.on("cars-ready", function() {
callback(carCol);
});
} else {
// we have cars, send them back
callback(carCol);
}
}
db.collection("cars", function(err, col) {
// store cars
carCol = col;
// tell waiters that we have cars.
carEmitter.emit("cars-ready");
});
Použijte emitory událostí k emulaci líného načítání. Možná budete chtít zobecnit na LazyLoadedCollection
třída/objekt, aby byl kód čistší / sušší.