Monorepo CLI
-
$ npm i -g @mikemajesty/monorepo-nestjs-cli
-
1 - type cli command
$ monorepo-nestjs-cli
-
4 - Select path template
# API must be inside [apps] folder - nestjs-monorepo/apps/ # MODULE must be inside [api] folder - nestjs-monorepo/apps/auth-api/src/modules/ # TEST must be inside [*] folder - nestjs-monorepo/*
.
└── main-api
├── Dockerfile
├── jest.config.js
├── package.json
├── src
│ ├── main.ts
│ └── modules
│ ├── health
│ │ ├── adapter.ts
│ │ ├── controller.ts
│ │ ├── module.ts
│ │ ├── service.ts
│ │ ├── swagger.ts
│ │ └── __tests__
│ │ ├── controller.e2e.spec.ts
│ │ ├── module.spec.ts
│ │ └── service.spec.ts
│ └── module.ts
├── tests
│ └── initialization.js
├── tsconfig.build.json
└── tsconfig.json
.
└── module
├── adapter.ts
├── controller.ts
├── module.ts
├── service.ts
├── swagger.ts
└── __tests__
├── controller.e2e.spec.ts
├── module.spec.ts
└── service.spec.ts
.
└── __tests__
├── controller.e2e.spec.ts
├── module.spec.ts
└── service.spec.ts
The following is a list of all the people that have contributed Nestjs monorepo CLI. Thanks for your contributions!
It is available under the MIT license. License