Skip to content
This repository has been archived by the owner on Nov 29, 2021. It is now read-only.

Nest.js 命令备忘录

Yancey Leo edited this page Mar 26, 2020 · 1 revision

nestjs-cli 快速创建指令

nest g controller xxx

创建 controller 及其测试文件

nest g service xxx

创建 service 及其测试文件

nest g module xxx

创建 module 及其测试文件

controller

Controller 只负责对请求的分发, 并不处理实际的业务逻辑, 每个控制器可以有多个路由.

service

处理实际的业务逻辑.

module

组装 controller 和 service.