это будет проблемой из-за того, что потребуется время для извлечения данных из базы данных, пока он не отобразит страницу просмотра, что вам нужно сделать изнутри обещания, значит сделать так, как следует
var CountryResponseData = [];router.get('/', ensureAuthenticated, (req, res) => {
Country.find({}).then(countrylist =>{
console.log(countrylist);
if(countrylist){
res.render('countrymgmt/list', { layout: "layoutinternal", title: "List Of Countries","countries":countrylist });
}else{
res.render('countrymgmt/list', { layout: "layoutinternal", title: "List Of Countries","countries":[] });
}
});
});