брать id последнего документа и делать find()
posts.createIndex({ time: 1},{}, function(err, indexName){
if (err) next(err);
posts.find({}).sort({time: -1}).skip((page-1)*10).limit(10).toArray(function(err, data) {
if (err) next(err);
callback(data);
});
});