Porque
getAllProductListings
é assíncrono, você precisa enviar a resposta no retorno de chamada:// Get latest listings
router.get('/latest/all', function (req, res, next) {
Product.getAllProductListings(res);
});
E no seu
product.js
://Find All
module.exports.getAllProductListings = function (response) {
var query = {};
Product.find(query, function (err, docs) {
console.log(docs);
response.send(docs);
});