npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

create-mutorr-stack

v1.0.2

Published

A CLI to scaffold a modern React project with Material-UI, Redux Toolkit, React Router DOM, and optional TypeScript/Tailwind CSS

Downloads

6

Readme

🚀 create-mutorr-stack

A powerful CLI tool to scaffold a modern React project with Material-UI (MUI), Redux Toolkit, React Router DOM, and optional TypeScript and Tailwind CSS, powered by Vite.

The name "mutorr" combines Mu (Material-UI) and torr (Redux Toolkit + React Router DOM) — your complete, feature-rich React development stack! 🎉


Features

  • 🎨 Material-UI (MUI): Pre-configured, beautiful UI components for rapid development.
  • 🧠 Redux Toolkit: Simplified state management with a sample counter slice.
  • 🧭 React Router DOM: Seamless client-side routing with Home and About pages.
  • Vite: Lightning-fast dev server and optimized builds.
  • 🧾 TypeScript (Optional): Type safety for a better developer experience.
  • 🌈 Tailwind CSS (Optional): Utility-first CSS for flexible, custom styling.
  • 🗂️ Organized Folder Structure: Maintainable layout with components, pages, store, and more.

🛠️ Installation

You don’t need to install anything globally! Simply run the following command to create a new project:

npm init mutorr-stack@latest my-app

🚀 Usage

📁 Create a New Project Create a New Project Run the CLI command and provide a project name:

create-mutorr-stack my-app

Answer Prompts 📝 TypeScript: Choose whether to use TypeScript (y/n). 🎨 Tailwind CSS: Choose whether to include Tailwind CSS (y/n).

Navigate to the project: cd my-app

Install dependencies (if not already done by the CLI): npm install

Start the development server: npm run start

The app will be available at http://localhost:5173.

Build for production: npm run build

The optimized build will be in the dist folder.

Preview the production build: npm run preview

Project Structure

The generated project has a clean, scalable structure: my-app/ ├── src/ │ ├── components/ # 📦 Reusable UI components │ ├── features/ # 🧩 Redux slices and logic (e.g., counter) │ ├── hooks/ # ⚓ Custom React hooks │ ├── pages/ # 📄 Route-based page components (e.g., Home, About) │ ├── store/ # 🏬 Redux store configuration │ ├── utils/ # 🔧 Utility functions │ ├── App.tsx # 🌐 Router setup with MUI Container │ ├── main.tsx # 🚀 Redux Provider and app entry │ └── index.css # 🎨 Global styles (Tailwind or basic) ├── public/ # 📂 Static assets ├── index.html # 📑 Vite entry point ├── package.json # 📦 Project metadata and scripts ├── vite.config.ts # ⚙️ Vite configuration └── tailwind.config.js # 🌬️ Tailwind configuration (if selected)

🎮 Example

The generated project includes a sample app with:

he generated project includes a sample app with:

A Home page (/) featuring a Redux counter with MUI buttons. An About page (/about) with basic MUI typography. Navigation via React Router DOM. Styling with MUI and optional Tailwind CSS.

Test the Counter:

Visit http://localhost:5173. Click the Increment and Decrement buttons to update the Redux state.

✅ Requirements

🟢 Node.js: Version 16 or higher. 📦 npm: Version 7 or higher. 🌐 Internet Connection: Required for initial dependency installation.

🤝 Contributing Contributions are welcome! 🎉 Follow these steps: Fork the repository on GitHub. Clone your fork:

Clone your fork:git clone https://github.com/yourusername/create-mutorr-stack.git

Create a branch:git checkout -b feature/your-feature

Make changes and commit:

git commit -m "Add your feature"

Push to your fork:

git push origin feature/your-feature

Open a pull request on the main repository.

Please follow the Code of Conduct and include tests for new features.

🐛 Issues

Report bugs or suggest features by opening an issue on the GitHub repository.

📜 License

This project is licensed under the MIT License. See the LICENSE file for details.

🙌 Acknowledgments

Built with inspiration from tools like create-vite and create-react-app. Powered by Vite, Material-UI, Redux Toolkit, and React Router. Created by Your Name. Happy coding! 😄