How can I browse or query live MongoDB data?

前端 未结 21 882
南方客
南方客 2020-12-22 17:18

I\'ve googled around but couldn\'t find a working MongoDB viewer or data browser.

An ideal (for my needs) tool would be a web based viewer with dead simple features

相关标签:
21条回答
  • 2020-12-22 18:14

    MogoVue is the best option I found so far, it has great features I did not see in other viewers, plus it gives few options to look at the data, as json, tables and hierarchy, which is extremely useful.

    Avoid MongoExplorer, it has major issues, which can cause you huge headaches. When viewing records using this tools, it may change fields which are MongoId's to plane string, it does not give any indication on this, just does it when you focus on the id field, this bug cost me lots of time and effort trying to find "what and where in my code i'm doing this silly thing"...

    0 讨论(0)
  • 2020-12-22 18:14

    As well as those mentioned by shingara, there's also:

    • Opricot
    • PHPMoAdmin
    • MongoHub (I've heard mixed reviews on this one, not sure if it's maintained)
    0 讨论(0)
  • 2020-12-22 18:16

    JMongo is nice db viewer using on fedora linux

    0 讨论(0)
  • 2020-12-22 18:17

    Just pushed mongoclikker to GitHub. It's a dead simple MongoDB viewer written in Node.

    0 讨论(0)
  • 2020-12-22 18:19

    To add to the list :)

    I just made a simple Mongo browser based on a hierarchical JQueryTreeview and implemented in Sinatra and Ruby.

    The reason for another viewer was that I wanted something that was fast and easy (both to use and the code base), that would let me peek at what was going on my MongoDB. Also, I wanted some nice Ajax effects. and could be the base of a more complete browser.

    https://github.com/tomjoro/mongo_browser

    0 讨论(0)
  • 2020-12-22 18:23

    Im just testing Rock_Mongo

    It's a nice tool, written in PHP.

    0 讨论(0)
提交回复
热议问题