New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

panda-react

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

panda-react

A lightweight CLI to react apps with Vite, TailwindCSS, Bootstrap, MUI, Axios, Formik, and more.

latest
Source
npmnpm
Version
1.0.7
Version published
Maintainers
1
Created
Source

🐼 Panda React

🚀 A simple CLI tool to bootstrap modern React + Vite projects with your choice of UI framework.

To create a new React project, run the following command in your terminal:

npx panda-react create app

After the project is created, navigate into the directory and start the development server:

cd <your-project-name>
npm install
npm run dev

✨ Features

  • Blazing Fast: Built on top of Vite for a lightning-fast development experience.
  • 🎨 UI Frameworks: Integrated support for Tailwind CSS, Bootstrap, and Material UI (MUI).
  • 🔧 Auto-Configuration: Automatically configures tailwind.config.js and postcss.config.js when you choose Tailwind.
  • 📂 Clean Structure: Generates a pre-defined, scalable folder structure for your project.

🎨 Choosing a UI Framework

You can specify a UI framework using the --ui flag when creating your project.

npx panda-react create my-app --ui <framework>

The available framework options are:

  • tailwind (Default)
  • bootstrap
  • mui
  • none

Examples:

# Create a project with Tailwind CSS
npx panda-react create my-tailwind-app --ui tailwind

# Create a project with Material UI
npx panda-react create my-mui-app --ui mui

# Create a project with no pre-installed UI framework
npx panda-react create my-vanilla-app --ui none

📂 Project Structure

Your new project will have a clean and organized folder structure:

my-app/
├── public/
├── src/
│   ├── assets/
│   ├── components/
│   ├── hooks/
│   ├── pages/
│   ├── utils/
│   ├── App.jsx
│   ├── index.css
│   └── main.jsx
├── .gitignore
├── index.html
├── package.json
├── README.md
└── vite.config.js

📜 Available Scripts

Inside the project directory, you can run the following commands:

  • npm run dev — Starts the development server.
  • npm run build — Builds the app for production.
  • npm run preview — Previews the production build locally.

🤖 CI/CD with GitHub Actions

This project uses GitHub Actions for continuous integration and deployment.

  • Quality Checks: Runs linters and tests on every push and pull request.
  • 📦 Auto Publish: Automatically publishes a new version to npm when a release is created on GitHub.

🤝 Contributing

Contributions are welcome! If you'd like to help improve Panda React, please follow these steps:

  • Fork the repository.
  • Create a new branch (git checkout -b feature/my-awesome-feature).
  • Commit your changes (git commit -m 'Add some awesome feature').
  • Push to the branch (git push origin feature/my-awesome-feature).
  • Open a Pull Request.

📜 License

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

Made with ❤️ by Ayush

Keywords

cli

FAQs

Package last updated on 25 Aug 2025

Did you know?

Socket

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.

Install

Related posts