React.js Important Package
| S.No. | Package | Use in React Project | Install Command |
| 1 | React | Main React library | npm install react |
| 2 | React DOM | Connect React with browser DOM | npm install react-dom |
| 3 | Vite | Fast React project setup and running | npm install vite |
| 4 | Create React App | Create React project | npx create-react-app my-app |
| 5 | React Router | Page routing/navigation | npm install react-router-dom |
| 6 | Axios | API calling | npm install axios |
| 7 | Bootstrap | UI design and responsive layout | npm install bootstrap |
| 8 | Tailwind CSS | Modern UI styling | npm install tailwindcss |
| 9 | Redux | Manage global state | npm install redux react-redux |
| 10 | Redux Toolkit | Easy Redux setup | npm install @reduxjs/toolkit |
| 11 | Formik | Form handling | npm install formik |
| 12 | Yup | Form validation | npm install yup |
| 13 | React Icons | Add icons | npm install react-icons |
| 14 | Material UI | Ready-made UI components | npm install @mui/material |
| 15 | SweetAlert2 | Beautiful alerts and popup | npm install sweetalert2 |
| 16 | React Toastify | Show notifications | npm install react-toastify |
| 17 | Framer Motion | Animation effects | npm install framer-motion |
| 18 | Socket.IO Client | Realtime frontend connection | npm install socket.io-client |
| 19 | JWT Decode | Decode login token | npm install jwt-decode |
| 20 | React Hook Form | Fast form handling | npm install react-hook-form |