Saya pikir Anda perlu melakukan seperti ini:
var mongoose = require('mongoose');
mongoose.connect(uri);
mongoose.connection.on("open", function(err){
mongoose.connection.db.eval("function(x){ return x; }", "asdf", function (err, retval) {
console.log('err: '+err);
console.log('retval: '+retval);
});
});
Ini bisa bekerja di PC saya. Anda harus memastikan bahwa koneksi tersedia.