A progressive Node.js framework for building efficient and scalable server-side applications.
Nest framework TypeScript starter repository.
$ npm install
# development
$ npm run start
# watch mode
$ npm run start:dev
# production mode
$ npm run start:prod
auto Mapper
├── nest-cli.json
├── package.json
├── package-lock.json
├── README.md
├── src
│ ├── app.module.ts
│ ├── common
│ │ ├── exceptions
│ │ │ ├── exception.base.ts
│ │ │ ├── exception.codes.ts
│ │ │ └── index.ts
│ │ ├── helpers
│ │ │ ├── Converters.ts
│ │ │ └── index.ts
│ │ └── mappings
│ │ ├── auto_mapper
│ │ │ └── user.profile.ts
│ │ └── user.ts
│ ├── config
│ │ ├── app.config.ts
│ │ ├── database.config.ts
│ │ ├── port.config.ts
│ │ ├── rate.config.ts
│ │ └── routes.config.ts
│ ├── main.ts
│ ├── modules
│ │ ├── api-mapper
│ │ │ ├── api-mapper.controller.ts
│ │ │ ├── api-mapper.module.ts
│ │ │ ├── api-mapper.service.ts
│ │ │ ├── auto_mapper_dto
│ │ │ │ ├── address.dto.ts
│ │ │ │ ├── index.ts
│ │ │ │ └── user.dto.ts
│ │ │ ├── entities
│ │ │ │ ├── auto_mapper_entity
│ │ │ │ │ ├── index.ts
│ │ │ │ │ └── user.entity.ts
│ │ │ │ └── mapper_a_entity
│ │ │ │ └── user-mapper.entity.ts
│ │ │ ├── error.message.ts
│ │ │ ├── repository
│ │ │ │ └── user.repository.ts
│ │ │ └── response_dto
│ │ │ ├── address.response.dto.ts
│ │ │ ├── index.ts
│ │ │ └── user.response.dto.ts
│ │ └── health
│ │ ├── health.controller.ts
│ │ └── health.module.ts
│ └── swagger.ts
├── tsconfig.build.json
└── tsconfig.json
- Author - Nahid barekati