Nest cli

59 阅读1分钟

Nest cli

构建项目

npx @nestjs/cli new 项目名

生成CRUD完整模块

快速生成CRUD+REST api 代码 且 不生成测试文件(--no-spec)

nest generate resource 模块名 --no-spec 

生成指定模块

指定模块(controller、service、module )且 不生成测试文件(--no-spec)

nest generate 模块(controller、service、module) 模块名 --no-spec 

构建项目 nest build

开发项目(热加载) nest start --watch