rustful-api-cli
v3.0.1
Published
基于express的Rustful Api Cli
Downloads
28
Readme
rustful-api-cli
Rear end scaffolding based on Express.
基于Express制作的后端脚手架。
Table of Contents | 目录
Installation | 安装
To install the package, run:
要安装此包,请运行:
npm install rustful-api-cli -g
Or with pnpm:
或使用 pnpm:
pnpm install rustful-api-cli -g
Usage | 使用方法
Here's a basic example of how to use the package:
以下是如何使用此包的基本示例:
rustful-api-cli init
Example | 示例
You can run the following code to see an example output:
你可以运行以下代码查看示例输出:
rustful-api-cli init
contents | 项目目录
backend/
├── config/
│ ├── cors.js // CORS 配置
│ ├── database.js // 数据库配置
│ └── index.js // 集中导出配置
├── controllers/
│ ├── v1/
│ │ └── index.js // 集中导出控制器
├── middlewares/
│ └── index.js // 集中导出中间件
├── models/
│ ├── index.js // 集中导出模型
├── services/
│ ├── index.js // 集中导出服务
├── routes/
│ ├── v1/
│ │ └── demo.js // demo路由
│ │ └── index.js // 集中导出路由
├── uploads/ // 文件上传目录
├── utils/ // 工具函数目录
├── index.js // 入口文件
└── package.json // 项目配置文件
└── .env // 环境变量配置文件