
Research
NPM targeted by malware campaign mimicking familiar library names
Socket uncovered npm malware campaign mimicking popular Node.js libraries and packages from other ecosystems; packages steal data and execute remote code.
scaffold-nestjs
Advanced tools
This generator will help you create a Nest.js application. You just need to answer the questions and get a ready-made application template.
First, generate your new project:
npx scaffold-nestjs
Run your generated application:
cd <project name>
docker-compose up -d
Options | Description | Example |
---|---|---|
skip-install | This option disables installation of dependencies after code generation. | npx scaffold-nestjs --skip-install |
no-interactive | This option disables answering questions in interactive mode. | npx scaffold-nestjs --no-interactive |
project | This option allows you to set the name of the project (default is nest-js-project). | npx scaffold-nestjs --project-name=nest-js-project |
should-overwrite | This option allows you to overwrite an existing folder. | npx scaffold-nestjs --should-overwrite |
database | This option allows you to set the database. Allowed values: mongo , mysql or postgres . | npx scaffold-nestjs --database=mongo |
orm | This option allows you to set the orm. Allowed values for MongoDB: mongoose or prisma .Allowed values for MySql and Postgres: prisma , mikroorm or typeorm . | npx scaffold-nestjs --orm=mongoose |
no-need-auth | This option disables the generation of authorization components. | npx scaffold-nestjs --no-need-auth |
auth | This option allows you to set the authorization option. Allowed values: jwt . | npx scaffold-nestjs --auth=jwt |
services | This option allows you to add various services to the project. Allowed values: keycloak , minio , novu . | npx scaffold-nestjs --services=keycloak,minio |
For example:
npx scaffold-nestjs --no-interactive \
--should-overwrite \
--project-name=nest-js-project \
--database=mongo \
--orm=mongoose \
--services=keycloak,novu
├── src
│ ├── database
│ │ ├── migrations
│ │ │ └── ...
│ │ ├── database.config.ts
│ │ └── database-factory.service.ts
│ ├── decorators
│ │ ├── auth-bearer.decorator.ts
│ │ ├── auth.decorator.ts
│ │ ├── roles.decorator.ts
│ │ └── serialization.decorator.ts
│ ├── exceptions
│ │ └── validation.exceptions.ts
│ ├── filters
│ │ ├── all-exceptions.filter.ts
│ │ ├── bad-request-exception.filter.ts
│ │ ├── forbidden-exception.filter.ts
│ │ ├── index.ts
│ │ ├── not-found-exception.filter.ts
│ │ ├── unauthorized-exception.filter.ts
│ │ └── validation-exceptions.filter.ts
│ ├── guards
│ │ ├── jwt-access.guard.ts
│ │ ├── jwt-refresh.guard.ts
│ │ └── roles.guard.ts
│ ├── interceptors
│ │ ├── serialization.interceptor.ts
│ │ └── wrap-response.interceptor.ts
│ ├── interfaces
│ │ └── exception-response.interface.ts
│ ├── modules
│ │ ├── auth
│ │ │ ├── dtos
│ │ │ │ ├── jwt-token.dto.ts
│ │ │ │ ├── refresh-token.dto.ts
│ │ │ │ ├── login.dto.ts
│ │ │ │ └── signup.dto.ts
│ │ │ ├── interfaces
│ │ │ │ ├── decoded-user.interface.ts
│ │ │ │ ├── jwt-strategy-validate.interface.ts
│ │ │ │ ├── login-payload.interface.ts
│ │ │ │ └── validate-user-output.interface.ts
│ │ │ └── strategies
│ │ │ │ ├── jwt-access.strategy.ts
│ │ │ │ ├── jwt-refresh.strategy.ts
│ │ │ │ └── public.strategy.ts
│ │ │ ├── auth.controller.ts
│ │ │ ├── auth.module.ts
│ │ │ ├── auth.repository.ts
│ │ │ └── auth.service.ts
│ │ └── user
│ │ ├── dtos
│ │ │ ├── update-user.dto.ts
│ │ │ └── user-response.dto.ts
│ │ ├── user.entity.ts
│ │ ├── user.controller.ts
│ │ ├── user.module.ts
│ │ ├── user.repository.ts
│ │ └── user.service.ts
│ ├── shared
│ │ ├── services
│ │ │ ├── api-config.service.ts
│ │ │ ├── keycloak.service.ts
│ │ │ ├── minio.service.ts
│ │ │ └── novu.service.ts
│ │ └── shared.module.ts
│ ├── app.module.ts
│ └── main.ts
├── .dockerignore
├── .env
├── .eslintrc.js
├── .gitignore
├── .prettierrc
├── docker-compose.yml
├── Dockerfile
├── nest-cli.json
├── package.json
├── README.md
├── tsconfig.build.json
└── tsconfig.json
Swagger documentation will be available on route:
http://localhost:3000/api
FAQs
Boilerplate generator for Nest.js
We found that scaffold-nestjs demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Socket uncovered npm malware campaign mimicking popular Node.js libraries and packages from other ecosystems; packages steal data and execute remote code.
Research
Socket's research uncovers three dangerous Go modules that contain obfuscated disk-wiping malware, threatening complete data loss.
Research
Socket uncovers malicious packages on PyPI using Gmail's SMTP protocol for command and control (C2) to exfiltrate data and execute commands.