Glee 项目使用教程
Glee也是个网易云第三方😶项目地址:https://gitcode.com/gh_mirrors/gle/Glee
1. 项目的目录结构及介绍
Glee/
├── README.md
├── package.json
├── src/
│ ├── index.js
│ ├── config/
│ │ ├── default.json
│ │ ├── production.json
│ ├── routes/
│ │ ├── api.js
│ ├── controllers/
│ │ ├── userController.js
│ ├── models/
│ │ ├── userModel.js
├── public/
│ ├── index.html
│ ├── css/
│ ├── js/
目录结构说明
- README.md: 项目说明文件。
- package.json: 项目依赖和脚本配置文件。
- src/: 源代码目录。
- index.js: 项目入口文件。
- config/: 配置文件目录。
- default.json: 默认配置文件。
- production.json: 生产环境配置文件。
- routes/: 路由文件目录。
- api.js: API 路由文件。
- controllers/: 控制器文件目录。
- userController.js: 用户控制器文件。
- models/: 模型文件目录。
- userModel.js: 用户模型文件。
- public/: 静态文件目录。
- index.html: 主页文件。
- css/: CSS 文件目录。
- js/: JavaScript 文件目录。
2. 项目的启动文件介绍
src/index.js
const express = require('express');
const app = express();
const config = require('./config');
const routes = require('./routes/api');
app.use(express.json());
app.use('/api', routes);
const PORT = process.env.PORT || 3000;
app.listen(PORT, () => {
console.log(`Server running on port ${PORT}`);
});
启动文件说明
- 引入
express
模块创建应用实例。 - 引入配置文件和路由文件。
- 使用中间件解析 JSON 请求体。
- 挂载 API 路由。
- 监听指定端口启动服务器。
3. 项目的配置文件介绍
src/config/default.json
{
"port": 3000,
"db": {
"host": "localhost",
"user": "root",
"password": "",
"database": "glee"
}
}
src/config/production.json
{
"port": 8080,
"db": {
"host": "production-db-host",
"user": "admin",
"password": "secure-password",
"database": "glee_production"
}
}
配置文件说明
- default.json: 默认配置文件,包含开发环境的端口和数据库配置。
- production.json: 生产环境配置文件,包含生产环境的端口和数据库配置。
通过以上配置文件,可以根据不同的环境变量加载相应的配置,实现开发和生产环境的分离。