How to view the contents of a Minimongo database in a client using Meteor?

I know that I can request CollectionName.find().fetch() in the browser JS console. Are there other tools equivalent to the GUI administration tool for all local minimongo repositories in the browser?

+6
source share
4 answers

Mongol does this, FTW, thanks to Max Savin.

+4
source

You can use privileged server-side administrative solutions such as Houston or any other MongoDB admin interface.

If you want to request data on the client for a quick check, you can use console.table :

 console.table(Tasks.find().fetch()) 
+9
source

I also noticed that no one mentioned this, but there is also chrome - the Meteor DevTools extension, which you can add to chrome tools. Once your meteor project is working, you can see the Meteor tab in the chrome tool, which will show you what MiniMongo is.

+2
source

There is an open source MongoDB management tool called Robomongo - which is very efficient and useful.

+1
source

Source: https://habr.com/ru/post/975362/


All Articles