TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Ask HN: How to Visualise MongoDB?

8 点作者 utkarsh_apoorva将近 5 年前
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 条评论

nocubicles将近 5 年前
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 未加载
davismwfl将近 5 年前
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 未加载
tedmiston将近 5 年前
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 未加载
huy将近 5 年前
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.
seektable将近 5 年前
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 未加载
XCSme将近 5 年前
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>
Beefin将近 5 年前
<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_apoorva将近 5 年前
OP here. Thanks for the upvotes. Some directions too please :-)
thiht将近 5 年前
Robo3T (formerly RoboMongo) does just this.