This web application allows users to search for different products (like mobile phones and laptops) across multiple e-commerce websites (Amazon, Flipkart) and sort them according to price. The application also includes a registration page with 3D hover effects.
Before you begin, ensure you have met the following requirements:
- Node.js
- npm (Node Package Manager)
- Git (for cloning the repository)
cd MiniProject
npx create-react-app client
npm install react-router-dom
mkdir server
Install Server Dependencies
cd server
npm init -y
npm install express axios cheerio cors
Install Client Dependencies
cd ../client
npm install
npm install axios
Start the Node.js server
cd server
node index.js
Start the React development server
cd client
npm start
Note:Both the terminal should be Running together