Wie hier angegeben https://github.com/Automattic/mongoose/issues/ 4291#issuecomment-230312093
Eine Problemumgehung ist die Verwendung von mongoose.Promise = global.Promise;
vor dem connect:
mongoose.Promise = global.Promise; // ADD THIS
mongoose.connect('localhost:27017/mydb');