Skip to content

结构说明


推荐

此目录结构为推荐使用的结构,并非强制要求,如果想改变结构可以通过 config/app.ts 去配置,如果想改变 config 目录可以在入口文件 start 的时候传入 start({app:{config_path:'xxxxx'}})

目录结构

.
├── app
│   ├── controller              // 控制器目录
│   │   └── hello.ts
│   ├── middleware              // 路由中间件目录
│   │   └── checkLogin.ts
│   ├── service                 // 模型目录
│   │   └── hello.ts
│   ├── validate                // 验证器目录
│   │   └── hello.ts
│   └── views                   // 视图目录
│       └── index.vue
├── build                       // 编译vue的目录
│   ├── index                   // 页面模块目录
│   └── build.ts                // 编译脚本
├── dist                        // 打包目录
├── cert                        // 证书文件目录
│   ├── ali_private_key.pem
│   ├── wx_private_key.pem
│   └── wx_public_key.pem
├── config                      // 配置文件目录
│   ├── alicloud.ts
│   ├── app.ts
│   ├── database.ts
│   ├── elasticsearch.ts
│   ├── mongodb.ts
│   ├── redis.ts
│   ├── wx.ts
│   └── pm2.json               // pm2配置文件
├── logs                       // 日志输出目录
│   ├── all-logs.log
│   └── log.2021-04-29.log
├── route                      // 路由配置目录
│   └── hello.ts
├── utils                      // 扩展工具函数目录
│   └── index.ts
├── websocket                  // websocket长连实现目录
│   └── ws.ts
├── public                     // 静态资源目录
│   ├── css                    // 样式目录
│   ├── js                     // 脚本目录
│   ├── icon.ico
│   └── index.html
├── index.ts                   // 项目入口文件
├── thinkts.d.ts               // 类型定义文件
├── package.json               // 项目配置文件
├── tsconfig.json              // TS配置文件
├── vite.config.ts             // Vite配置文件
└── README.md                  // 项目说明文件
.
├── app
│   ├── controller              // 控制器目录
│   │   └── hello.ts
│   ├── middleware              // 路由中间件目录
│   │   └── checkLogin.ts
│   ├── service                 // 模型目录
│   │   └── hello.ts
│   ├── validate                // 验证器目录
│   │   └── hello.ts
│   └── views                   // 视图目录
│       └── index.vue
├── build                       // 编译vue的目录
│   ├── index                   // 页面模块目录
│   └── build.ts                // 编译脚本
├── dist                        // 打包目录
├── cert                        // 证书文件目录
│   ├── ali_private_key.pem
│   ├── wx_private_key.pem
│   └── wx_public_key.pem
├── config                      // 配置文件目录
│   ├── alicloud.ts
│   ├── app.ts
│   ├── database.ts
│   ├── elasticsearch.ts
│   ├── mongodb.ts
│   ├── redis.ts
│   ├── wx.ts
│   └── pm2.json               // pm2配置文件
├── logs                       // 日志输出目录
│   ├── all-logs.log
│   └── log.2021-04-29.log
├── route                      // 路由配置目录
│   └── hello.ts
├── utils                      // 扩展工具函数目录
│   └── index.ts
├── websocket                  // websocket长连实现目录
│   └── ws.ts
├── public                     // 静态资源目录
│   ├── css                    // 样式目录
│   ├── js                     // 脚本目录
│   ├── icon.ico
│   └── index.html
├── index.ts                   // 项目入口文件
├── thinkts.d.ts               // 类型定义文件
├── package.json               // 项目配置文件
├── tsconfig.json              // TS配置文件
├── vite.config.ts             // Vite配置文件
└── README.md                  // 项目说明文件

备案号:冀ICP备20015584号-2