Created
April 20, 2020 18:56
-
-
Save hamzamu/fbc6f721f2513b6fdaf0116fb8b86ccd to your computer and use it in GitHub Desktop.
Meteor- browser console stats snippet
This file contains hidden or 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
getStats = function () { | |
Meteor.call('getStats', null, (err, data) => { | |
if (data) { | |
App.setSetting({ | |
stats: data | |
}) | |
} | |
}) | |
return "Getting Statistics" | |
} | |
Tracker.autorun(() => { | |
var stats = App.getSetting('stats') | |
if (stats) { | |
console.log(stats) | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment