getAllProductListings
非同期の場合、コールバックで応答を送信する必要があります:
// Get latest listings
router.get('/latest/all', function (req, res, next) {
Product.getAllProductListings(res);
});
そしてあなたのproduct.js
:
//Find All
module.exports.getAllProductListings = function (response) {
var query = {};
Product.find(query, function (err, docs) {
console.log(docs);
response.send(docs);
});