How Find From Publication Enhances Meteor with Server-Side and Client-Side APIs for Record Retrieval


Summary of my bookmarked Github repositories from Jul 24th, 2015

Github repositories

  • versolearning/find-from-publication

    Find From Publication is a Meteor package that addresses a limitation in Meteor's core by enabling the determination of records on the client side resulting from a specific subscription. It overcomes this issue by tracking the published document of the subscription in a hidden metadata collection. The package provides server-side and client-side APIs. On the server side, you can publish a set of documents using the `FindFromPublication.publish` function, similar to Meteor.publish. On the client side, you can retrieve the published documents using `Collection.findFromPublication` or `Collection.findOneFromPublication`. The package also supports sorting based on the order of addition. Find From Publication is released under the MIT license and is maintained by Tom Coleman from Percolate Studio as part of the Verso project.