Created
March 4, 2024 14:54
-
-
Save harisrozak/33ed978c4861efde29ca1fea04fd455c to your computer and use it in GitHub Desktop.
Meteor JS : Show all current subscriptions
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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