Whetstone 开源项目使用教程
1. 项目的目录结构及介绍
Whetstone 项目的目录结构如下:
whetstone/
├── README.md
├── package.json
├── src/
│ ├── index.js
│ ├── config/
│ │ ├── default.json
│ │ ├── production.json
│ ├── routes/
│ │ ├── index.js
│ ├── controllers/
│ │ ├── exampleController.js
│ ├── models/
│ │ ├── exampleModel.js
│ ├── services/
│ │ ├── exampleService.js
├── tests/
│ ├── example.test.js
目录介绍
README.md
: 项目说明文档。package.json
: 项目依赖和脚本配置文件。src/
: 源代码目录。index.js
: 项目入口文件。config/
: 配置文件目录。default.json
: 默认配置文件。production.json
: 生产环境配置文件。
routes/
: 路由文件目录。index.js
: 路由入口文件。
controllers/
: 控制器文件目录。exampleController.js
: 示例控制器文件。
models/
: 模型文件目录。exampleModel.js
: 示例模型文件。
services/
: 服务文件目录。exampleService.js
: 示例服务文件。
tests/
: 测试文件目录。example.test.js
: 示例测试文件。
2. 项目的启动文件介绍
项目的启动文件是 src/index.js
。该文件主要负责初始化应用和启动服务器。以下是 index.js
的主要内容:
const express = require('express');
const app = express();
const config = require('./config');
const routes = require('./routes');
app.use(express.json());
app.use('/', routes);
const port = config.get('port');
app.listen(port, () => {
console.log(`Server is running on port ${port}`);
});
启动文件介绍
- 引入
express
模块并创建应用实例。 - 引入配置文件和路由文件。
- 使用中间件解析 JSON 请求体。
- 挂载路由。
- 从配置文件中获取端口号并启动服务器。
3. 项目的配置文件介绍
项目的配置文件位于 src/config/
目录下,主要包括 default.json
和 production.json
。
default.json
默认配置文件,包含开发环境的配置信息:
{
"port": 3000,
"database": {
"host": "localhost",
"port": 5432,
"name": "dev_db"
}
}
production.json
生产环境配置文件,包含生产环境的配置信息:
{
"port": 8080,
"database": {
"host": "prod_host",
"port": 5432,
"name": "prod_db"
}
}
配置文件介绍
port
: 服务器监听的端口号。database
: 数据库配置信息,包括主机地址、端口号和数据库名称。
通过这些配置文件,可以方便地在不同环境下切换配置,确保应用的灵活性和可维护性。