xxxxxxxxxx
module.exports.index = async function index(req,res){
let new_product = {}; //I'm using mongoose
await Product.findOne({title: 'my title'})
.then((result) => new_product = result);
console.log(new_product);
res.render('index.ejs');
}