# nodeService **Repository Path**: jz07/nodeService ## Basic Information - **Project Name**: nodeService - **Description**: node + express +mysql搭建后台管理系统服务接口 采用mvc设计理念搭建node 服务结构 - **Primary Language**: JavaScript - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 4 - **Forks**: 0 - **Created**: 2017-12-15 - **Last Updated**: 2022-01-21 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # nodeService ###########运行项目 ``` ## npm install ## supervisor app.js ``` ###########目录结构描述 ``` ├── Readme.md // help ├── app.js // 入口文件 ├── common // 基础库 │ ├── common.js // 基础封装函数 ├── config // 配置 │ ├── config.base.js // 基础配置 │ ├── config.message.js // 基础回调 │ ├── db.js // 数据库源 ├── controller │ └── admin // 后台接口 │ ├── userController.js // 用户接口地址 │ ├── roleController.js // 角色接口地址 │ ├── moduleController.js // 模块接口地址 │ └── api // 前端接口地址 ├── routes // 路由 │ ├── index.js // app.js调用的路由 │ ├── userRole.js // 用户,角色,模块路由 ├── service // 服务接口 │ └── dbsql // sql语句 │ ├── userSql.js // 用户sql语句 │ ├── roleSql.js // 角色sql语句 │ ├── moduleSql.js // 模块sql语句 │ └── userService.js // 用户服务 │ └── roleService.js // 角色服务 │ └── moduleService.js // 模块服务 ├── static // web静态资源加载 ``` https://github.com/wclimb/video-admin