Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Meteor admin panel package

does meteor have backend admin panel like "rais_admin" or "active admin" in rails for CRUD operations under models?

like image 582
Voldemar Duletskiy Avatar asked Mar 18 '13 19:03

Voldemar Duletskiy


4 Answers

One of the teams at the first Meteor Summer Hackathon wrote the z-mongo-admin package that gives you a panel for basic CRUD operations. This should have the functionality that you're looking for.

like image 80
Roy Avatar answered Oct 12 '22 03:10

Roy


Update 6/1/2015 - YES, since version 1.0.2. Once your app is running using meteor, run meteor shell in the same directory in a separate tab and you'll have a REPL.

Not yet. You can run meteor mongo in the app directory to access the database. Currently, you need the app running for this to work.

Observatory is a burgeoning logging and testing framework. Perhaps some kind of REPL will fit in the future.

like image 33
TimDog Avatar answered Oct 12 '22 02:10

TimDog


Meteor Admin is an alternative to Houston based on the Autoform package.

It offers full CRUD based on your collection schemas.

like image 41
yogiben Avatar answered Oct 12 '22 02:10

yogiben


Meteor Candy is an admin panel made just for Meteor. The idea is, everyone builds their Meteor app differently, but we do have commonalities such as the use of Accounts packages, etc, and that's a good place to start.

The package uses Dynamic Import available in Meteor 1.5, which means it adds virtually no weight to your client bundle.

Disclosure: I am the creator of the package

like image 37
Max Savin Avatar answered Oct 12 '22 03:10

Max Savin