1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 01:42:09 +02:00
tldr/pages/common/nest.md

24 lines
496 B
Markdown

# nest
> Initialize, develop, and maintain Nest applications.
> More information: <https://docs.nestjs.com/cli/overview>.
- Display information about installed nest version:
`nest info`
- Create a new NestJS project in a directory of the same name:
`nest new {{project_name}}`
- Build a specific NestJS project:
`nest build {{project_name}}`
- Run a specific NestJS project:
`nest start {{project_name}}`
- Import a library into the current NestJS project:
`nest add {{library_name}}`