Trying to surface data from a websocket connection to the client

New to Meteor, and semi-fresh to Node.js still. I have an API SDK that uses websockets to pull simple real time data. I have this within a server method and it fires correctly when called from the client side and will echo its results to the command line. What I am trying to learn is how to pass this real time data back to the client to be displayed.

(My reading so far leads me to think I need to do this with a collection some how…)

Thank you!

You should check the publish API the added, changed, removed and ready methods. You don’t need to use a “real” collection with those.

Awesome, thank you. Didn’t notice that you can use it without turning off the auto publish, it just throws warnings.