Curated distro for Constellation
meteor add babrahams:constellation
Constellation demo site that steps you through basic use of most the packages included in this distro
- interface for inserting, updating, removing documents in Mongo collections (one tab for each collection)
- tab with an actions log and undo/redo for any changes to documents made through the Constellation console
- account tab showing the current signed in user and also for impersonating other users
- fullscreen switch
- config tab for hiding and showing any tabs in the console
- "Temple" - a tab that gives you a visual look behind the scenes at your app's templates and their data contexts
- a tab that shows the current subscriptions and the parameters used when subscribing
- autopublish switch
- a tab where you can manipulate
Session
keys and values (along with other ReactiveDict instances in the global scope) - toggle console size (make it tiny)
- position the console left/right, up/down (in case it's covering the wrong part of your app)
- Velocity HTML reporter in your Constellation console
- "DDP Inspector" - for keeping an eye on the data flow between client and server
- Schema generator - when typing out your schema gets too onerous
- This package just includes other packages.
- You can achieve the same effect as adding this package by adding individual packages from atmosphere. The following command will achieve a similar result to adding this package:
meteor add constellation:console constellation:subscriptions constellation:autopublish constellation:session constellation:tiny constellation:position babrahams:temple lai:ddp-inspector
- easy install:
meteor add babrahams:constellation
- no clutter: when you type
meteor list
- you don't see a whole lot of Constellation-related packages, justbabrahams:constellation
- you can't remove individual packages - i.e. you lose the ability to remove constellation tabs from the command line, although you can always hide tabs you don't want using the "Config ..." panel
- we don't really want a whole lot of distros like this cluttering Atmosphere, but I thought there should be one curated package that gives you most of the useful Constellation functionality out of the box
meteor update
isn't going to get you the latest individual package versions unless this distro is up to date (if its not, open an issue!)
To get a clean meteor list
but more control over which packages are included in your Constellation console:
- Clone this repo into your app's
/packages
directory meteor add babrahams:constellation
- Open
package.js
and
- remove lines such as
api.use('constellation:[email protected]');
if you never want to use the "Tiny" tab - add lines such as
api.use('constellation:[email protected]');
if you want to use the "Velocity" tab
Note: If you do this, you're on you own with regards to package version management!