
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.
quickstart-next
Advanced tools
A CLI to quickly create a Next.js starter with Tailwind, MUI, Shadcn, and Zustand
Quickstart Next is a CLI tool to quickly create a Next.js starter project with optional Tailwind CSS, Material UI (MUI), Shadcn/UI components, and Zustand state management. It automates project setup, cleans default boilerplate, and adds a custom welcome page.
Run the CLI directly using npx:
npx quickstart-next
Or install globally:
npm install -g quickstart-next
quickstart-next
npx quickstart-next
src folder.cd my-project
npm run dev
After running the CLI, your folder quickstart-next will look like this:
quickstart-next/
├─ bin/
│ └─ index.js # CLI entry point (runs prompts, creates project)
├─ src/
│ ├─ prompts.js # Inquirer prompts for user input
│ ├─ createProject.js # Creates the Next.js project folder
│ ├─ cleanBoilerplate.js # Cleans default pages, adds welcome page, renames layout.js
│ ├─ setupTailwind.js # Configures Tailwind CSS if selected
│ ├─ setupMui.js # Installs and configures Material UI
│ ├─ setupShadcn.js # Initializes Shadcn and adds default components
│ ├─ setupZustand.js # Installs and configures Zustand state management
│ └─ copyTemplate.js # Copies optional templates into the project
├─ package.json # NPM package metadata and dependencies
└─ README.md # This documentation
prompts.js – User input via Inquirer prompts.createProject.js – Creates the Next.js project folder and initial files.cleanBoilerplate.js – Removes default boilerplate pages, adds a custom welcome page, and renames layout.js to layout.jsx.setupTailwind.js – Installs and configures Tailwind CSS.setupMui.js – Installs Material UI and sets up the project.setupShadcn.js – Initializes Shadcn/UI and adds default components like the button.setupZustand.js – Installs Zustand for state management.copyTemplate.js – Copies optional templates into the project.Inside the CLI package:
npm start – Runs the CLI locally.npx quickstart-next – Runs the CLI without installing globally.npm test – Placeholder test script.Inside the generated Next.js project:
npm run dev – Starts the development server.npm run build – Builds the project for production.npm start – Runs the production build.git checkout -b feature/my-feature.git commit -m "Add my feature".git push origin feature/my-feature.This project is licensed under the MIT License.
FAQs
A CLI to quickly create a Next.js starter with Tailwind, MUI, Shadcn, and Zustand
We found that quickstart-next 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.