Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dolgarev/meteor-subscription-audit
This package is made for analysis of subscriptions used by meteor application.
https://github.com/dolgarev/meteor-subscription-audit
meteor meteor-package meteorjs
Last synced: 9 days ago
JSON representation
This package is made for analysis of subscriptions used by meteor application.
- Host: GitHub
- URL: https://github.com/dolgarev/meteor-subscription-audit
- Owner: dolgarev
- License: mit
- Created: 2016-02-14T21:34:47.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2018-03-14T12:29:10.000Z (almost 7 years ago)
- Last Synced: 2024-11-14T22:31:24.687Z (2 months ago)
- Topics: meteor, meteor-package, meteorjs
- Language: JavaScript
- Homepage: https://atmospherejs.com/liberation/subscription-audit
- Size: 5.86 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# meteor-subscription-audit
This package is made for analysis of subscriptions used by meteor application.## Install package
meteor add liberation:subscription-audit## Goals
This package allows to show and evaluate, which subscriptions are uses at a given page, their parameters, detect doubling subscriptions and turn them off freely.## Usage
All commands are being done in browser console (but note, this package is tested only in Chrome console).* `SA.list()` - at a console shows data about all subscriptions at a given page. They are shown in a table. Each line has a unique address, which you may use along with subscription ID in following commands. But be careful since indexes may change within time.
* `SA.show()` - shows short info about subscription
* `SA.showDetails()` - detailed info about subscription
* `SA.showParams()` - only info about parameters of subscription
* `SA.showDups()` - shows info about doubling of subscriptions
* `SA.stop()` - stop subscription
* `SA.collList()` - show brief info about all collections