Skip to content
Merged
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions pages/common/nest.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@

- Display information about installed nest version:

`nest info`
`nest {{[i|info]}}`

- Create a new NestJS project in a directory of the same name:

`nest new {{project_name}}`
`nest {{[n|new]}} {{project_name}}`

- Build a specific NestJS project:

Expand All @@ -22,3 +22,7 @@
- Import a library into the current NestJS project:

`nest add {{library_name}}`

- Generate a new component:

`nest {{[g|generate]}} {{module|controller|service|...}} {{module_name}}`