// this is image_share.js Images = new Mongo.Collection("images"); if (Meteor.isClient) { Template.images.helpers({ images: Images.find() }); Template.images.events({ "click .js-image": function (event) { $(event.target).css("width", "50px"); } }); } if (Meteor.isServer) { Meteor._debug("I am the server"); } Meteor._debug("where am I running");