Can anyone help me where is the problem view is generated before mongoose get data from database. I already use await but its not waiting for response.
router.get('/', async(req, res, next)=> {
try{
const products = await Product.find({});
res.render('shop/index', { title: 'Express',products });
}catch(e){
console.log(e);
}
});
console.log