How can I connect without to a distant database (MONGOHQ) without using MongoClient.connect() ?
var db, mongo, server;
mongo = require("mongodb");
server = new mongo.Server("mongodb://login:[email protected]:10057//appname", 10057, {
auto_reconnect: true
});
db = new mongo.Db("confirmed", server, { safe: true });
the message I get from my server is
[Error: failed to connect to [mongodb://login:[email protected]:10057//appname:10057]]
Any ideas ?
You want something more like this, where you define the server as a DNS name (no protocol, port, auth or path):
and then once db is defined: