Skip to content

Latest commit

 

History

History
60 lines (42 loc) · 1.09 KB

README.md

File metadata and controls

60 lines (42 loc) · 1.09 KB

CompraPrice

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.

Table of Contents

Prerequisites

Before you begin, ensure you have met the following requirements:

  • Node.js
  • npm (Node Package Manager)
  • Git (for cloning the repository)

Installation

  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