
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
panda-react
Advanced tools
A lightweight CLI to react apps with Vite, TailwindCSS, Bootstrap, MUI, Axios, Formik, and more.
🚀 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
tailwind.config.js and postcss.config.js when you choose Tailwind.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)bootstrapmuinoneExamples:
# 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
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
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.This project uses GitHub Actions for continuous integration and deployment.
Contributions are welcome! If you'd like to help improve Panda React, please follow these steps:
git checkout -b feature/my-awesome-feature).git commit -m 'Add some awesome feature').git push origin feature/my-awesome-feature).This project is licensed under the MIT License - see the LICENSE file for details.
Made with ❤️ by Ayush
FAQs
A lightweight CLI to react apps with Vite, TailwindCSS, Bootstrap, MUI, Axios, Formik, and more.
We found that panda-react demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.