
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
create-enterprise-nestjs
Advanced tools
Enterprise-grade NestJS boilerplate generator with three-layer architecture.
npm install -g create-enterprise-nestjs
npx create-enterprise-nestjs my-app
Or with project name:
npx create-enterprise-nestjs my-app
After generating your project, you have two options:
cd my-app
# Install dependencies
npm install
# Set up environment variables
cp .env.example .env
# Edit .env with your database configuration
# Start Docker services
npm run docker:up
# Setup database
npm run db:create
npm run db:migrate
# Enable DatabaseModule in src/app.module.ts
# Uncomment: DatabaseModule, // Uncomment after setting up database configuration
# Start development server
npm run start:dev
If you prefer to install MySQL/PostgreSQL locally:
cd my-app
# Install dependencies
npm install
# Set up environment variables
cp .env.example .env
# Edit .env with your local database configuration
# Update DB_HOST to 'localhost' or your database host
# Install and configure your database locally
# Then create the database manually or use:
npm run db:create
npm run db:migrate
# Enable DatabaseModule in src/app.module.ts
# Uncomment: DatabaseModule, // Uncomment after setting up database configuration
# Start development server
npm run start:dev
Note: Docker commands will gracefully fail if Docker is not available, allowing you to use local database installations instead.
my-app/
├── src/
│ ├── common/ # Shared utilities
│ ├── config/ # Configuration
│ ├── database/ # Sequelize setup
│ └── modules/ # Feature modules
├── docker-compose.yml
└── package.json
MIT
FAQs
Enterprise NestJS boilerplate generator
We found that create-enterprise-nestjs demonstrated a healthy version release cadence and project activity because the last version was released less than 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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.