Using Multiple Mongodb Databases with Meteor.js

Update It is now possible to connect to remote/multiple databases: var database = new MongoInternals.RemoteCollectionDriver(“<mongo url>”); MyCollection = new Mongo.Collection(“collection_name”, { _driver: database }); Where <mongo_url> is a mongodb url such as mongodb://127.0.0.1:27017/meteor (with the database name) There is one disadvantage with this at the moment: No Oplog Old Answer At the moment this is … Read more