Skip to content

Instantly share code, notes, and snippets.

@harisrozak
Created March 4, 2024 14:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save harisrozak/33ed978c4861efde29ca1fea04fd455c to your computer and use it in GitHub Desktop.
Save harisrozak/33ed978c4861efde29ca1fea04fd455c to your computer and use it in GitHub Desktop.
Meteor JS : Show all current subscriptions
// Paste below codes in the browser console.
var subs = Meteor.connection._subscriptions; // all the subscriptions that have been subscribed.
Object.keys(subs).forEach(function(key) {
console.log(subs[key]); // see them in console.
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment