I know I can query CollectionName.find().fetch()
in the browser's JS console. Are there other tools that are the equivalent of a GUI admin tool for all the browser's local minimongo storage ?

- 2,194
- 22
- 29
-
2You may be interested in houston, have you heard of it ? https://github.com/gterrono/houston – saimeunt Sep 16 '14 at 15:51
-
Well, that's server-side, but due to mirroring, it's pretty good- thanks for the link. – Dean Radcliffe Sep 16 '14 at 15:57
-
can you to use robomongo http://robomongo.org/ , but it is not the same what you have on the client or server – Walter Zalazar Sep 16 '14 at 23:32
7 Answers
Mongol does this, FTW, thanks to Max Savin.

- 2,194
- 22
- 29
-
Yes this pluggin works well but Mongol bypass the insecure package and shows all entities so it's not a real `browser's local minimongo storage` view – Ser Nov 02 '15 at 15:22
Also I noticed no one has mentioned it but there is also for chrome a 'Meteor DevTools' extension that you can add to chrome tools. Once your meteor project is running you can see in chrome tool a tab called 'Meteor' that will show you what MiniMongo has.

- 1,959
- 20
- 21
There is a open source MongoDB management tool called Robomongo — which is very efficient and useful.

- 121
- 12
-
1Minimongo is a client-side implementation of MongoDB that runs completely in the user's browser - so Robomongo unfortunately won't work – user3413723 Apr 14 '16 at 22:09
There is an awesome atmosphere package meteor toys that shows the subscribed data on minimongo. It also allows to add, edit or delete data on the go. very handy.
Also, meteor toys may not work with latest meteor update (1.6.1+). So, I found a light package that does the same called constellation.
You can choose from anyone. It will surely help debugging on minimongo easier.

- 1
- 1

- 371
- 1
- 4
- 17
You can use the Chrome plugin Meteor MiniMongo Explorer, it's very useful and show you every collections/documents you have currently on your MiniMongo
Pro compared to Mongol
You don't need to add any package to your meteor project to works

- 4,870
- 3
- 32
- 57
Open the console and do it:
Meteor.connection._mongo_livedata_collections[collectionName].find().fetch()
My current Meteor's version is 1.8.1. I don't know it is possible to do the same on the older ones.

- 436
- 5
- 17
-
1`collection` is the name of the collection on the mongo-server! – Michael_Scharf Jul 19 '21 at 13:12