View all available subscriptions

The app I’m working on is starting to become rather complex, and for some templates that are nested several layers deep, it is becoming a challenge to know what subscriptions the template has access to. Is there a simple command I can use to view what subscriptions the client has subscribed to at a certain location in the code base?

Ex:
console.log(Meteor.subscriptions.list);

Take a look at: Meteor.default_connection._subscriptions

1 Like

Meteor.connection._subscriptions

1 Like

Yes, both worked and were helpful. Thank you!