add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

24
pages.zh/common/nest.md Normal file
View File

@@ -0,0 +1,24 @@
# nest
> 初始化、开发和维护 Nest 应用程序。
> 更多信息:<https://docs.nestjs.com/cli/overview>。
- 显示已安装的 nest 版本信息:
`nest info`
- 在同名目录中创建一个新的 NestJS 项目:
`nest new {{project_name}}`
- 构建特定的 NestJS 项目:
`nest build {{project_name}}`
- 运行特定的 NestJS 项目:
`nest start {{project_name}}`
- 将库导入当前的 NestJS 项目:
`nest add {{library_name}}`