Skip to content

Instantly share code, notes, and snippets.

@budiantoip
Last active August 7, 2021 21:04
Show Gist options
  • Select an option

  • Save budiantoip/3e860838a1e98ffd719fa2e1addcaa06 to your computer and use it in GitHub Desktop.

Select an option

Save budiantoip/3e860838a1e98ffd719fa2e1addcaa06 to your computer and use it in GitHub Desktop.
NestJS
// 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