We've just released v0.2.0 of create-next-mui, making it even faster to scaffold a Next.js + MUI projects.
The biggest addition in this release is plugin support.
You can now install supported integrations into your project with a single command.
๐ Get Started
Create a new project:
npx create-next-mui my-app
Add plugins anytime:
npx create-next-mui add zustand
npx create-next-mui add react-query
โจ What's New
๐ Plugin Support
Add Zustand to your project:
npx create-next-mui add zustand
Or install React Query ( TanStack Query ):
npx create-next-mui add react-query
No manual setup. The CLI adds the required files and configuration for you.
โก Faster Project Creation
You can now skip prompts using default flags:
npx create-next-mui my-app --yes
๐ฆ Other Improvements
- Added project name as a CLI argument.
- New templates for Zustand and React Query.
- Improved documentation.
- Initial plugin architecture for future extensions.
Source:
thatonevikash
/
create-next-mui
๐ The fastest way to start with Nextjs + MUI
Scaffold a production-ready Next.js + Material UI application in seconds.
The generated project comes preconfigured with:
- โก Next.js App Router
- ๐จ Material UI
- ๐ฆ TypeScript or JavaScript templates
- ๐งน ESLint Flat Config
- ๐ Scalable project structure
No global installation required.
Quick Start
Create a new project:
npx create-next-mui my-app
or
npm init next-mui
If no project name is provided, the CLI will guide you through the setup interactively.
npx create-next-mui
Non-interactive Mode
Use the --yes (or -y) flag to skip prompts and accept the default configuration.
npx create-next-mui my-app --yes
This will automatically:
- use the provided project name
- select the TypeScript template
- generate the project without prompting
This is especially useful for:
- CI/CD pipelines
- automation scripts
- testing
- quick project generation
Interactive Setup
Without --yes, the CLI walks you through the available options.
Current prompts include:
- Project name
- Language selection
- TypeScript (recommended)
- JavaScript
- Features
- Zustand
- React Query (โฆ
Built with ๐ by thatonevikash

Top comments (2)
โกWebsite: create-next-mui.vercel.app/
Some comments may only be visible to logged-in visitors. Sign in to view all comments.