mongo-express
mongo-express copied to clipboard
Web-based MongoDB admin interface, written with Node.js and express
This change is [](https://reviewable.io/reviews/mongo-express/mongo-express/613) --- Thanks for this great tool! A feature I've been missing for a while is to be able to run raw commands on a collection. To...
I have a replica set setup via docker compose, all mongo containers on the same machine. Using pymongo, I can connect via: `pymongo.MongoClient(['mongodb://mongo-1:27017', 'mongodb://mongo-2:27018', 'mongodb://mongo-3:27019'], replicaSet='mongo-rs', username='my_user', password='my_pw')` What is...
This change is [](https://reviewable.io/reviews/mongo-express/mongo-express/855) --- Update _busboy_ to v1 ([breaking changes](https://github.com/mscdex/busboy/issues/266)). Note: [yarn.lock](https://github.com/mongo-express/mongo-express/blob/master/yarn.lock) file needs to be updated with `yarn install` command.
This change is [](https://reviewable.io/reviews/mongo-express/mongo-express/857) --- Note: [yarn.lock](https://github.com/mongo-express/mongo-express/blob/master/yarn.lock) file needs to be updated with `yarn install` command.
This change is [](https://reviewable.io/reviews/mongo-express/mongo-express/856) --- Use naming convention of the environment variable $PORT for web application to bind its HTTP server.
With the deprecation of `ME_CONFIG_MONGODB_SERVER`, `ME_CONFIG_MONGODB_ADMINUSERNAME`, etc. in favor of only `ME_CONFIG_MONGODB_URL`, the corresponding `_FILE` options were also removed. This makes it impossible to use Docker Swarm secrets, which was...
This change is [](https://reviewable.io/reviews/mongo-express/mongo-express/851) --- ## ✅ Node 18 It looks like node-18 works without any changes ## ⚠️ Updated Dependency ~~`npm audit fix --force` to update `express-fileupload`, before I...
I am using nginx as a reverse proxy and have defined `ME_CONFIG_SITE_BASEURL=/me/`. But when I browse to `https://foo.bar/me/`, I get the error message "Cannot GET /". nginx.conf config snippet: ```...
Hi all, I pulled the latest master branch and try to build the docker image. But While building I am getting the following error  Kindly let me know what...