
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-fullstack-kit
Advanced tools
A production-ready CLI tool to generate full-stack monorepo starter kits in under 5 minutes.
npx create-fullstack-kit myapp \
--frontend next \
--ui shadcn \
--backend nest \
--auth oauth \
--db prisma \
--package-manager pnpm
Or use interactive mode:
npx create-fullstack-kit
myapp/
├── apps/
│ ├── web/ # Next.js App Router + Tailwind + shadcn/ui
│ └── api/ # NestJS OR Express backend
├── packages/
│ ├── ui/ # Shared shadcn components
│ ├── auth/ # Shared OAuth + JWT logic
│ ├── eslint-config/
│ └── tsconfig/
├── .env.example
├── package.json
├── turbo.json
├── pnpm-workspace.yaml
└── README.md
--frontend <type> - Frontend framework (default: next)--ui <type> - UI library (default: shadcn)--backend <type> - Backend framework (nest | express, default: nest)--auth <type> - Authentication (default: oauth)--db <type> - Database ORM (default: prisma)--package-manager <type> - Package manager (pnpm | npm | yarn, default: pnpm)# Install dependencies
pnpm install
# Build
pnpm build
# Run in development
pnpm dev
MIT
FAQs
Generate a production-ready full-stack monorepo starter kit (pnpm only)
The npm package create-fullstack-kit receives a total of 1 weekly downloads. As such, create-fullstack-kit popularity was classified as not popular.
We found that create-fullstack-kit 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.