mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-03-17 21:00:51 +00:00
Update cheatsheets
This commit is contained in:
29
nest
Normal file
29
nest
Normal file
@@ -0,0 +1,29 @@
|
||||
---
|
||||
syntax: markdown
|
||||
tags: [tldr, common]
|
||||
source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# 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}}`
|
||||
Reference in New Issue
Block a user