Go to file
2022-02-20 19:01:31 +08:00
config first commit 2022-02-20 19:01:31 +08:00
dao first commit 2022-02-20 19:01:31 +08:00
db first commit 2022-02-20 19:01:31 +08:00
models first commit 2022-02-20 19:01:31 +08:00
modules first commit 2022-02-20 19:01:31 +08:00
public/ueditor first commit 2022-02-20 19:01:31 +08:00
routes/api/private/v1 first commit 2022-02-20 19:01:31 +08:00
services first commit 2022-02-20 19:01:31 +08:00
test first commit 2022-02-20 19:01:31 +08:00
.gitignore first commit 2022-02-20 19:01:31 +08:00
app.js first commit 2022-02-20 19:01:31 +08:00
cheese.log first commit 2022-02-20 19:01:31 +08:00
package.json first commit 2022-02-20 19:01:31 +08:00
README.md first commit 2022-02-20 19:01:31 +08:00
先运行 npm install 安装依赖包.txt first commit 2022-02-20 19:01:31 +08:00

项目整体文件说明

  • config 配置文件目录
    • default.json 默认配置文件其中包含数据库配置jwt配置
  • dao 数据访问层,存放对数据库的增删改查操作
    • DAO.js 提供的公共访问数据库的方法
  • models 存放具体数据库 ORM 模型文件
  • modules 当前项目模块
    • authorization.js API权限验证模块
    • database.js 数据库模块(数据库加载基于 nodejs-orm2 库加载)
    • passport.js 基于 passport 模块的登录搭建
    • resextra.js API 统一返回结果接口
  • node_modules 项目依赖的第三方模块
  • routes 统一路由
    • api 提供 api 接口
    • mapp 提供移动APP界面
    • mweb 提供移动web站点
  • services 服务层,业务逻辑代码在这一层编写,通过不同的接口获取的数据转换成统一的前端所需要的数据
  • app.js 主项目入口文件
  • package.json 项目配置文件