This is a tad off-topic, but I'd love something that's more like django's admin UI for mongo-using projects. Not the same tool, I know. What's a good word for something like that?
Help define an awesome MongoDB GUI tool
11–20 of 23 posts
Re: Help define an awesome MongoDB GUI tool
#12This is something that I have personally been planning on building for a while, so if this were an open source project, I would be interested in contributing.
Re: Help define an awesome MongoDB GUI tool
#13Re: Help define an awesome MongoDB GUI tool
#14Re: Help define an awesome MongoDB GUI tool
#15Re: Help define an awesome MongoDB GUI tool
#16An interesting problem with making a MongoDB GUI is that a key feature of every SQL GUI -- a rich of your data that you can use to see it and play with it -- won't work as well, because MongoDB doesn't have strict table definitions. (Or 'tables' for that matter). Each item in a collection could have completely different fields. So given a big collection of this irregular data, how do you display it compactly? Listing…
Re: Help define an awesome MongoDB GUI tool
#17Re: Help define an awesome MongoDB GUI tool
#18An interesting problem with making a MongoDB GUI is that a key feature of every SQL GUI -- a rich of your data that you can use to see it and play with it -- won't work as well, because MongoDB doesn't have strict table definitions. (Or 'tables' for that matter). Each item in a collection could have completely different fields. So given a big collection of this irregular data, how do you display it compactly? Listing…