MongoDB
 sql >> Base de Dados >  >> NoSQL >> MongoDB

Coleção compartilhada entre cliente e servidor Meteor


Arquitetura clássica:

lib/streams.js
Streams = new Meteor.Collection("streams"); 

server/streams.js
Meteor.publish("streams", function () {
  return Streams.find();
});

client/streams.js
Meteor.subscribe("streams");

Template.body.helpers({
  streams: function(){
    return Streams.find();
  }
});