DEV Community

Cover image for create-next-mui v0.2.0 is here 🚀 — Now with Plugin Support!
Vikash Kumar
Vikash Kumar

Posted on

create-next-mui v0.2.0 is here 🚀 — Now with Plugin Support!

We've just released v0.2.0 of create-next-mui, making it even faster to scaffold a Next.js + MUI project.

The biggest addition in this release is plugin support. You can now install supported integrations into your project with a single command.

✨ What's New

🔌 Plugin Support

Add Zustand to your project:

npx create-next-mui add zustand
Enter fullscreen mode Exit fullscreen mode

Or install React Query:

npx create-next-mui add react-query
Enter fullscreen mode Exit fullscreen mode

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
Enter fullscreen mode Exit fullscreen mode

Create a JavaScript project directly:

npx create-next-mui my-app --js
Enter fullscreen mode Exit fullscreen mode

You can combine them as well:

npx create-next-mui my-app --js --yes
Enter fullscreen mode Exit fullscreen mode

📦 Other Improvements

  • Added project name as a CLI argument.
  • New templates for Zustand and React Query.
  • Improved documentation.
  • Initial plugin architecture for future extensions.

🚀 Get Started

Create a new project:

npx create-next-mui my-app
Enter fullscreen mode Exit fullscreen mode

Add plugins anytime:

npx create-next-mui add zustand
npx create-next-mui add react-query
Enter fullscreen mode Exit fullscreen mode

I'd love your feedback and suggestions. If there's a plugin you'd like to see next, let me know!

Top comments (1)

Collapse
 
thatonevikash profile image
Vikash Kumar