https://github.com/nestjs-mod/nestjs-mod-contrib
Contrib repository for the NestJS-mod
https://github.com/nestjs-mod/nestjs-mod-contrib
contributions mod modules nestjs nestjs-mod
Last synced: about 1 month ago
JSON representation
Contrib repository for the NestJS-mod
- Host: GitHub
- URL: https://github.com/nestjs-mod/nestjs-mod-contrib
- Owner: nestjs-mod
- License: mit
- Created: 2024-01-09T03:23:54.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2025-08-30T07:32:44.000Z (3 months ago)
- Last Synced: 2025-10-14T22:25:08.027Z (about 1 month ago)
- Topics: contributions, mod, modules, nestjs, nestjs-mod
- Language: TypeScript
- Homepage: https://nestjs-mod.com/docs/category/common
- Size: 8.89 MB
- Stars: 9
- Watchers: 1
- Forks: 2
- Open Issues: 3
-
Metadata Files:
- Readme: README-NX.MD
- License: LICENSE
Awesome Lists containing this project
README
# Commands
## Create library
```
./node_modules/.bin/nx g @nestjs-mod/schematics:library --buildable --publishable --directory=libs/infrastructure/docker-compose --simpleName=true --strict=true
./node_modules/.bin/nx g @nestjs-mod/schematics:library --name=feature-name --buildable --publishable --directory=libs/feature-name --simpleName=true --strict=true --linter=eslint --unitTestRunner=jest
./node_modules/.bin/nx g @nestjs-mod/schematics:library --buildable --publishable --directory=libs/core/keyv --simpleName=true --strict=true
./node_modules/.bin/nx g @nx/angular:library --directory=libs/core/sso-angular
```
## Create application
```
./node_modules/.bin/nx g @nestjs-mod/schematics:application --directory=apps/example-cache-manager --name=example-cache-manager --strict=true
./node_modules/.bin/nx g @nestjs-mod/schematics:application --directory=apps/example-keyv --name=example-keyv --strict=true
./node_modules/.bin/nx g @nx/angular:application --directory=apps/example-minio-angular --name=example-minio-angular --strict=true --minimal=true --prefix=app --style=less --ssr=true --viewEncapsulation=None --e2eTestRunner=none --bundler=webpack
```
## Remove library
```
./node_modules/.bin/nx g @nx/workspace:remove common
```
## Remove application
```
./node_modules/.bin/nx g @nx/workspace:remove example-basic
./node_modules/.bin/nx g @nx/workspace:remove example-keyv-e2e
```