A simple CRUD (Create, Read, Update, Delete) application built with React and React Bootstrap for managing user data. This app provides an intuitive interface for creating and managing users.
- User creation and updating
- User list display with edit and delete options
- Responsive design using React Bootstrap
- Notification messages for user actions
- Splash screen during data loading
- Frontend: React, React Router, React Bootstrap
- Backend: Node.js, Express.js (assumed based on API calls)
- Database: MySQL (assumed based on CRUD functionality)
- Others: Axios for HTTP requests
- Clone the repository:
git clone https://github.com/AdityaPatil100/React-Crud.git cd React-Crud
- Backend:
cd backend node index.js
- Frontend:
cd frontend npm install npm start
In backend dir, check config->config.json and set database connection
{
"development": {
"username": "root",
"password": "root",
"database": "crud_app",
"host": "127.0.0.1",
"dialect": "mysql"
}
}