mongo client source code url
git clone github.com/mrvautin/ad… && cd adminMongo
Official website
adminmongo.markmoffat.com/docs/
Install
Using NPM:
Install from NPM: npm install admin-mongo
Move folder from node_modules: mv node_modules/admin-mongo/ ./adminMongo
Enter folder: cd adminMongo
Install dependencies: npm install
Start application: npm start
Visit http://127.0.0.1:1234 in your browser
Using Git:
Clone Repository: git clone https://github.com/mrvautin/adminMongo.git && cd adminMongo
Install dependencies: npm install
Start application: npm start
Visit http://127.0.0.1:1234 in your browser
Using Zip
Download Zip file from: https://github.com/mrvautin/adminMongo/archive/master.zip
Unzip to chosen directory
Enter directory: cd adminMongo
Install dependencies: npm install
Start application: npm start
Visit http://127.0.0.1:1234 in your browser
modify local ip
adminMongo will listen on host: localhost and port: 1234 by default. This can be overwritten by adding a config file in /config/app.json
{
"app": {
"host": "10.0.0.1",
"port": 4321,
"docs_per_page": 15,
"password": "secureadminpassword",
"locale": "de",
"context": "dbApp",
"monitoring": false
}
}