# express-admin **Repository Path**: shaoxiong789/express-admin ## Basic Information - **Project Name**: express-admin - **Description**: 一个基于NodeJS Express Bootstrap 后台管理系统,包括用户,登录,角色,菜单权限等。 - **Primary Language**: JavaScript - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 10 - **Created**: 2021-09-24 - **Last Updated**: 2021-11-03 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # express-admin ``` 一个基于NodeJS Express Bootstrap 框架的后台管理系统,包括登录,角色,菜单权限等。 redis: v3.0+, nodejs: v8.0+ ``` # 下载地址 https://github.com/wangbinlml/express-admin # Demo地址 http://a.chenxun.org username: test password: test # 安装 ``` git clone https://github.com/wangbinlml/express-admin.git cd express-admin npm install 打开浏览器访问:http://127.0.0.1:3000  (3000端口可在system_config.json中配置) ``` #配置数据库 ``` { "mysql": { "host": "127.0.0.1", "user": "root", "password": "", "database": "demo", "port": 3306, "connectionLimit": 50, "acquireTimeout": 10000, "charset": "utf8" }, "redis": { "cluster": false, "connect_info": [ { "port": 6379, "host": "127.0.0.1" } ] } } ``` #数据库文件 ``` db/db.zip ``` # Todo List - [X] 用户登录 - [X] 登录验证码 - [X] 用户管理 - [x] 菜单管理 - [x] 权限管理 - [x] 用户角色管理 - [x] 菜单权限管理 - [x] 数据库整理 - [ ] 操作权限管理 # 界面预览 1.登录 -- ![image](public/images/login.png) 2.首页 ![image](public/images/main.png)