Mongo-express
MONGO Express is an open source MongoDB Web management interface based on node. JS and Express.
GitHub Address: https://github.com/andzdroid/mongo-express
Function
Current Features:
连接多个数据库分别连接和认证独立的数据库认证为管理员查看所有数据库数据库 黑名单/白名单集合(collections)的增删查改文档(documents)的增删查改在文档中使用BSON数据类型
Limit
被编辑的文档必须有document._id属性无GridFS的支持(有可能成为计划功能)二进制BSON数据类型没有经过测试
JSON documents are parsed through JavaScript virtual machines, so malicious JavaScript code can be executed on the Web interface on the server.
Mongo-express can only be used for private development.
Usage
Installation:
npm install mongo-express
or global installation:
npm install -g mongo-express
Or just take it off GitHub and run it. npm install
Configuration:
Copy or config.default.js
rename config.js
a new file.
Fill in the configuration file with the information you want to change, such as MongoDB connection.
Run:
node app
Use:
View http://localhost:8081 or what you wrote in the configuration URL/port
.
Interface
Reprint please indicate the source
MongoDB Web Management Interface mongo-express Introduction