You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
490 B
25 lines
490 B
# 立方和教育推广机制后端
|
|
|
|
Node + Express 分层接口,用内存仓库模拟数据库,方便后续替换为 MySQL、PostgreSQL 或 MongoDB。
|
|
|
|
## Scripts
|
|
|
|
```bash
|
|
npm install
|
|
npm run dev
|
|
```
|
|
|
|
默认服务地址:
|
|
|
|
```text
|
|
http://localhost:3100/api
|
|
```
|
|
|
|
## Main Modules
|
|
|
|
- `controllers/`: HTTP 入参和出参
|
|
- `services/`: 推荐、积分、课程、管理台业务规则
|
|
- `repositories/`: 数据访问层
|
|
- `data/seed.js`: 初始模拟数据
|
|
- `routes/`: API 路由聚合
|