Beginner at Meteor. Just learning how everything works so bear with me.
Everything was working fine in one file, but after installing iron:router to hav
iron:router
You need to define Streams on the client as well.
Streams
if(Meteor.isClient) { Streams = new Meteor.Collection("streams"); Meteor.subscribe("streams"); Template.body.helpers = function(){ return Streams.find(); } }