events.js:141 throw er; // Unhandled \'error\' event MongoError: connection 0 to localhost:27017 timed out at Function.MongoError.create (/home/ubuntu/scripts/
const mongoose = require('mongoose'); const option = { socketTimeoutMS: 30000, keepAlive: true, reconnectTries: 30000 }; const mongoURI = process.env.MONGODB_URI; mongoose.connect(mongoURI, option).then(function(){ //connected successfully }, function(err) { //err handle });