Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a way to get data GUI view in Meteor.js?

Tags:

meteor

Is there a way to get data GUI view in Meteor.js? If yes please enlighten me, as I am new to meteor. I just need to know what is the best way to access database in meteor mongodb... Thanks!!!

like image 395
Manisha Dayal Avatar asked Aug 19 '13 12:08

Manisha Dayal


3 Answers

I've found that this little package called Mongol is good for development to have a quick and easy way to look at your data right from within your web app.

https://github.com/msavin/Mongol

Mongol Screen Shot

like image 151
phocks Avatar answered Sep 21 '22 11:09

phocks


RoboMongo provides a good UI for Mongo DB (Download link). When i tried with meteor, follow these steps:

  • Run Meteor cd ing into your Project Folder (usually runs at http://localhost:3000/)

  • Download and Install the Robomongo from the Download link

  • Create a new connection in the robomongo UI, clicking on the following icon:

    enter image description here

enter image description here

Connect to port number 3001 instead of default 27017, and you can see the mongo db and it's contents

like image 34
Kailas Avatar answered Sep 22 '22 11:09

Kailas


Use either:

  • Z Mongo Admin, a meteor package similar to Django admin. This is probably the closest to what you're looking for: http://www.youtube.com/watch?v=ixJyB8Z-tU8&list=UU3fBiJrFFMhKlsWM46AsAYw

  • One of the many Mongo GUIs, I use both robomongo (http://robomongo.org/) and mongohub (https://github.com/bububa/MongoHub-Mac) on OSX.

like image 44
Stephan Tual Avatar answered Sep 24 '22 11:09

Stephan Tual