mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-01 23:15:24 +02:00
nest: add page (#9153)
This commit is contained in:
parent
01cc2fa872
commit
2c50726c0f
1 changed files with 24 additions and 0 deletions
24
pages/common/nest.md
Normal file
24
pages/common/nest.md
Normal file
|
@ -0,0 +1,24 @@
|
|||
# nest
|
||||
|
||||
> Command-line tool to 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}}`
|
Loading…
Add table
Reference in a new issue