Automate Field Computation in Meteor


Summary of my bookmarked Github repositories from Aug 30th, 2015

Github repositories

  • maximummeteor/computed-fields

    maximum:computed-fields is a Meteor package that enables automatic computation of field values in a collection. It offers a convenient solution for scenarios where retrieving and counting related data can be slow. By using computed fields, you can create a field called postCount in the authors collection that automatically updates itself with the number of posts written by each author. The package provides various methods for defining and managing computed fields, including adding dependencies on other collections, performing simple computations, and handling increments and decrements. It also supports integration with the aldeed:collection2 package. The package is licensed under the MIT license and welcomes contributions from the community.