Meteor : how to publish custom JSON data?
Edit: The solution I used is @Kyll's one. Suppose the server side objects I'd like to return are "complicated" to build and need different attributes from different collections. I first tried: /server/publications.js Meteor.publish('myCustomDocument', function(){ // suppose here that I need to X.find() different collections // and create a complex Array of JSON data (which contains different // attributes from different Collections return [ {appName: 'aName', category: 'catName', anotherField: 'something'}, (...) ]; }); It doesn't work because it's not returning a cursor. What I want to do is