TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: How to Visualise MongoDB?

8 pointsby utkarsh_apoorvaalmost 5 years ago
Hey HN, Is there a tool that lets you visualise your database in browser, in an easy way.<p>I have tried Metabase, Redash, Google DataStudio - all pretty complex tools.<p>I am an indie hacker, and have my product data in Mongo. Right now, I check it out in terminal. It would be good to have a visualisation tool to do that for me.<p>My criteria:<p>1. Simple to use 2. Should not keep crashing (Metabase for Mac sucks)<p>If nothing like this exists, do you think I should build one and open source it?

9 comments

nocubiclesalmost 5 years ago
I don&#x27;t think its possible to visualize Mongo data out of the box due to the fact its schemaless. They have this product <a href="https:&#x2F;&#x2F;docs.mongodb.com&#x2F;bi-connector&#x2F;master&#x2F;" rel="nofollow">https:&#x2F;&#x2F;docs.mongodb.com&#x2F;bi-connector&#x2F;master&#x2F;</a> which I have not used but it looks something that would be able to solve the issue? I have tried also Metabase with Mongo and it works to some extent but when I tried the queries didn&#x27;t work etc.<p>I think your best option would be to custom build some dashboards using some HTML and JS and some API that serialializes your data or if you need BI tool then either check out their bi-connector or maybe build some ETL workflow and save your data in Bigquery or something similar. From there it would be easy to use Metabase or something else to visualize your data.
评论 #24048603 未加载
davismwflalmost 5 years ago
Have you looked at DataGrip from JetBrains or RoboMongo?<p>I have used both of those as DB tools. Currently I have no Mongo databases and only use DataGrip, but I understand it supports Mongo pretty well and it is a decent tool. DataGrip isn&#x27;t free but does have a free trial. Also, I believe there are a couple of different plug-ins for Visual Studio code that work with Mongo, but I don&#x27;t use it so can&#x27;t say how well etc.<p>* edit, sorry, just realized you said in browser, none of my suggestions are in-browser.
评论 #24042457 未加载
tedmistonalmost 5 years ago
Are you looking for a database GUI tool or a visual graph of the data in your Mongo db?<p>For the former, Robo 3T, as mentioned in sibling threads is probably the most popular free option.<p>For the latter, I haven&#x27;t seen much but it looks like Mongo themselves have a tool called MongoDB Charts [1] for this.<p>[1]: <a href="https:&#x2F;&#x2F;www.mongodb.com&#x2F;products&#x2F;charts" rel="nofollow">https:&#x2F;&#x2F;www.mongodb.com&#x2F;products&#x2F;charts</a>
评论 #24052532 未加载
huyalmost 5 years ago
You can check out Holistics.io - It allows you to bring MongoDB data into a SQL DW, and visualize them in a single tool.<p><a href="https:&#x2F;&#x2F;www.holistics.io&#x2F;blog&#x2F;build-reporting-analytics-mongodb-using-holistics&#x2F;" rel="nofollow">https:&#x2F;&#x2F;www.holistics.io&#x2F;blog&#x2F;build-reporting-analytics-mong...</a><p>It has a free version you can possibly fit yourself into.
seektablealmost 5 years ago
Take a look to <a href="https:&#x2F;&#x2F;www.seektable.com" rel="nofollow">https:&#x2F;&#x2F;www.seektable.com</a>, it has native connector for MongoDB. Both cloud &amp; self-hosted versions are available; paid subscriptions are not needed for personal&#x2F;individual usage.
评论 #24048587 未加载
XCSmealmost 5 years ago
Robo 3T - <a href="https:&#x2F;&#x2F;robomongo.org&#x2F;" rel="nofollow">https:&#x2F;&#x2F;robomongo.org&#x2F;</a> NoSQLBooster - <a href="https:&#x2F;&#x2F;www.nosqlbooster.com&#x2F;" rel="nofollow">https:&#x2F;&#x2F;www.nosqlbooster.com&#x2F;</a>
Beefinalmost 5 years ago
<a href="https:&#x2F;&#x2F;www.mongodb.com&#x2F;products&#x2F;compass" rel="nofollow">https:&#x2F;&#x2F;www.mongodb.com&#x2F;products&#x2F;compass</a>
utkarsh_apoorvaalmost 5 years ago
OP here. Thanks for the upvotes. Some directions too please :-)
thihtalmost 5 years ago
Robo3T (formerly RoboMongo) does just this.