{"id":13602717,"url":"https://github.com/azat-co/mongoui","last_synced_at":"2025-10-25T14:42:29.106Z","repository":{"id":7702753,"uuid":"9067336","full_name":"azat-co/mongoui","owner":"azat-co","description":"MongoDB admin UI server written in Node.js 🎮","archived":false,"fork":false,"pushed_at":"2020-10-16T05:10:08.000Z","size":47752,"stargazers_count":586,"open_issues_count":30,"forks_count":130,"subscribers_count":43,"default_branch":"master","last_synced_at":"2025-04-04T03:08:01.063Z","etag":null,"topics":["database","mongodb","mongodb-admin","mongoui","nodejs","react","webpack"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/azat-co.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2013-03-28T01:06:15.000Z","updated_at":"2025-04-02T11:07:39.000Z","dependencies_parsed_at":"2022-06-26T00:39:17.835Z","dependency_job_id":null,"html_url":"https://github.com/azat-co/mongoui","commit_stats":null,"previous_names":[],"tags_count":36,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/azat-co%2Fmongoui","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/azat-co%2Fmongoui/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/azat-co%2Fmongoui/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/azat-co%2Fmongoui/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/azat-co","download_url":"https://codeload.github.com/azat-co/mongoui/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248618212,"owners_count":21134199,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["database","mongodb","mongodb-admin","mongoui","nodejs","react","webpack"],"created_at":"2024-08-01T18:01:35.322Z","updated_at":"2025-10-25T14:42:29.008Z","avatar_url":"https://github.com/azat-co.png","language":"JavaScript","funding_links":[],"categories":["JavaScript"],"sub_categories":[],"readme":"# MongoUI: MongoUI (mongoui) is a web (browser) admin interface for MongoDB.\n\nMongoUI is an open-source web and desktop app which allows to administer local and remote MongoDB instances via GUI. No need to type commands in a terminal anymore. Convenient interface will allow to create, update, remove and filter/search documents. You can switch between collections or even databases with just a single click.\n\nCurrently a standalone tool (run as an app locally or on your server); desktop app later. This is a brand new v2 of MongoUI. Old version use DerbyJS, then new version uses Webpack, React, React Router, React Bootstrap and of course Express and Node.\n\nMongoUI v2 looks like this ([gif](https://raw.githubusercontent.com/azat-co/mongoui/master/mongoui.gif)):\n\n![](https://raw.githubusercontent.com/azat-co/mongoui/master/mongoui.gif)\n\n\nHere's another short [**video**](https://vimeo.com/222012000) that shows filtering, editing, and switching collections:\n\n[![](demo-image.png)](https://vimeo.com/222012000)\n\n\n\n---\n\n\n## Why\n\nTired of typing `db.users.findOne({_id:ObjectId(...)})` just to look up data structure. Even more typing to modify the data. Not happy with the user experience of other MongoDB admin tools?\n\nMeet MongoUI! Alternative to [exprss-mongo](https://github.com/andzdroid/mongo-express) and [Robomongo](https://robomongo.org).\n\n![](https://raw.githubusercontent.com/azat-co/mongoui/master/mongoui-screenshot.png)\n\n---\n\n## Installation\n\n\n```\nnpm i -g mongoui\nmongoui\n```\n\n## Dev Installation\n\n### Download MongoUI\n\nSSH:\n\n```bash\ngit clone git@github.com:azat-co/mongoui\nnpm i\n```\n\nor HTTPS\n\n```bash\ngit clone https://github.com/azat-co/mongoui.git\n\n```\n\nor CURL\n\n```\ncurl -O https://github.com/azat-co/mongoui/archive/master.zip\n```\n\nor WGET\n\n```\nwget https://github.com/azat-co/mongoui/archive/master.zip\nunzip master.zip\ncd mongoui-master\n```\n\n### Install Dependencies\n\n```\nnpm i\n```\n\n\n---\n\n## Usage\n\n\n### Build and Run MongoUI in Regular Mode\n\n```\nnpm start\n```\n\nThen, open \u003chttp://localhost:3001\u003e in your favorite browser. Enjoy!\n\n\n### Build and Run MongoUI in Development (Hot-Reload) Mode\n\nFront-end development in one terminal:\n\n```\nnpm run start-dev\n```\n\n\nOpen \u003chttp://localhost:3000/\u003e in your favorite browser.\n\nNote: there are two ports, 3001 and 3000. In dev mode you need to go to 3000, in regular mode, navigate to 3001. This is because in dev mode, we are using webpack dev server on 3000 and the API (index.js) is alway on 3001.\n\n---\n\n## Additional Tasks\n\n\nYou'll need MongoDB running for MongoUI to work:\n\n```\nmongod\n```\n\n\nFront-end build:\n\n```\nnpm run build\n```\n\n\n### Configs\n\nConfigurations are in the `config.json` file. Modify as needed (remote databases should work just fine!).\n\n```js\n{\n  \"database\": {\n    \"default\": {\n      \"host\": \"localhost\",\n      \"port\": 27017,\n      \"name\": \"mongoui\",\n      \"username\": \"\",\n      \"password\": \"\"\n    }\n  }\n}\n```\n\n## Branches\n\n* Master — major releases, main branch\n* Develop — current development branch (make your pull requests here)\n\n\n\n## Contributors\n\nVia `git shortlog -s -n`:\n\n```\n    83  azat-co\n    67  Azat Mardan\n    65  Azat Mardanov\n    26  Tom2277\n    14  cultofmetatron\n    12  Will Hart\n     1  Sam Tobia\n     1  Jan Carlo Viray\n```\n\n\n\n## TODO\n\nThe list is in the GitHub Issues.\n\nHow to contribute in the CONTRIBUTING.md\n\n\n\n### Running Tests\n\nIn order to run the tests which are in `test` folder, you will need:\n\n* Node.js\n* NPM\n\nWith those installed, running `npm install` and ''npm test'' will run the tests.\n\n\n## Non-node.js alternatives\n\n* Mac OS X app: [MongoHub](http://mongohub.todayclose.com/)\n* .NET based app: MongoVUE](http://www.mongovue.com/)\n\n\n## License\n\nLicense is in LICENSE.md\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fazat-co%2Fmongoui","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fazat-co%2Fmongoui","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fazat-co%2Fmongoui/lists"}