create-next-mui v0.2.0이 출시되었습니다 🚀 — 이제 플러그인 지원이 제공됩니다!

작성자

카테고리:

← 피드로
DEV Community · Vikash Kumar · 2026-07-06 개발(SW)
Cover image for Now with Plugin Support: npx create-next-mui v0.2.0 is live now 🚀

Vikash Kumar

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

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

✨ 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 ( TanStack 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

📦 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:

CREATE-NEXT-MUI-BANNER

create-next-mui

npm version Next.js 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

Enter fullscreen mode Exit fullscreen mode

or

npm init next-mui

Enter fullscreen mode Exit fullscreen mode

If no project name is provided, the CLI will guide you through the setup interactively.

npx create-next-mui

Enter fullscreen mode Exit fullscreen mode

Non-interactive Mode

Use the --yes (or -y) flag to skip prompts and accept the default configuration.

npx create-next-mui my-app --yes

Enter fullscreen mode Exit fullscreen mode

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

원문에서 계속 ↗

코멘트

답글 남기기

이메일 주소는 공개되지 않습니다. 필수 필드는 *로 표시됩니다