2022-10-21 03:13:52 +01:00
|
|
|
# nest
|
|
|
|
|
2024-02-25 10:46:24 +00:00
|
|
|
> Initialize, develop, and maintain Nest applications.
|
2022-10-21 03:13:52 +01:00
|
|
|
> 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}}`
|