Last active
August 7, 2021 21:04
-
-
Save budiantoip/3e860838a1e98ffd719fa2e1addcaa06 to your computer and use it in GitHub Desktop.
NestJS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // install the cli command | |
| npm -i g @nestjs/cli | |
| // create a new project | |
| nest new <project_name> | |
| // Create a controller | |
| nest g controller <controller_name> | |
| // Create a service | |
| nest g service <service_name> | |
| // implement env variables : https://nx.dev/latest/react/guides/environment-variables | |
| // implement mvc : https://blog.nrwl.io/nx-and-node-microservices-b6df3cd1bad6 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment