This directory is reserved for NestJS TypeScript backend framework examples.
NestJS is a progressive Node.js framework for building efficient and scalable server-side applications.
# Install NestJS CLI globally
npm i -g @nestjs/cli
# Create a new project
nest new project-name
# Navigate to project
cd project-name
# Start development server
npm run start:devproject-name/
├── src/
│ ├── main.ts # Application entry point
│ ├── app.module.ts # Root module
│ └── app.controller.ts # Example controller
├── test/ # Test files
├── package.json
└── tsconfig.json
npm run start- Start production servernpm run start:dev- Start development server with watch modenpm run build- Build the applicationnpm run test- Run unit testsnpm run test:e2e- Run end-to-end tests