Book Image

Getting Started with Meteor.js JavaScript Framework

By : Isaac Strack
Book Image

Getting Started with Meteor.js JavaScript Framework

By: Isaac Strack

Overview of this book

Table of Contents (14 chapters)

Broadcasting changes


As mentioned in Chapter 3, Why Meteor Rocks!, communicating changes between the client-side Minimongo and the server-side MongoDB instances happens over DDP. The requests from the client to the server happen automatically when you update a collection on the client. The server to client communication, however, uses a publish/subscribe model that, until now, we have let Meteor take care for us.