Meteor Publish Composite

screenshot of Meteor Publish Composite
meteor

Meteor.publishComposite provides a flexible way to publish a set of related documents from various collections using a reactive join

Overview:

The meteor-publish-composite package provides a flexible way to publish a set of related documents from various collections using a reactive join. This enables the easy publication of a tree of documents at once, with the published collections being reactive and updating when changes occur. The package offers flexibility in establishing parent-child relationships based on various criteria, making it ideal for scenarios like displaying related articles on a webpage.

Features:

  • Reactive Join: Publish a set of related documents from multiple collections.
  • Flexible Relationship: Establish parent-child relationships based on custom criteria.
  • Reactive Updates: Published collections update automatically in response to changes.
  • Support for Arguments: PublishComposite function supports both argument-less and argument-based publications.
  • Server-Side Function: The package exports a function to be used on the server for publishing purposes.
  • Error Reporting: Includes instructions on reporting any issues found with the package.
  • Asynchronous Functionality: Supports asynchronous functions for more dynamic publishing needs.
meteor
Meteor

Meteor.js is a full-stack JavaScript platform that simplifies web application development by allowing developers to use a single codebase for both the client and server sides. It provides an integrated set of technologies, including real-time data updates, a reactive templating engine, and a built-in package management system, streamlining the process of building modern and scalable web applications.