Skip to content

Instantly share code, notes, and snippets.

@halbgut
halbgut / MeteorPagination.js
Last active January 29, 2021 08:48
Pagination in Meteor using FlowRouter (untested)
if(Meteor.isServer) {
Meteor.publish('nPosts', function (limit, skip) {
Posts.find({}, {
skip: skip || 0,
limit: limit || 10
})
})
}
if(Meteor.isClient) {