How to Subscribe to Pusher channel in Meteor Server

I’m very new to Meteor (from a .NET background).

I would like the Meteor Server to subscribe to a particular existing Pusher channel to get real-time data that is fed from pusher.com. On each new incoming data event, the Server will process the data and update the Meteor Clients.

What is the best way to do this in Meteor?

There are javascript and Node.js client libraries for Pusher:


I’m just not sure whether I should use these (and if so which ones and how) or instead try to write my own code in Meteor using websocket.

I managed to solve this using MeteorHacks: Complete NPM integration for Meteor