React Project Setup and Installation Guide

React Project Installation and Setup This README.md file provides step-by-step instructions on how to clone and run a basic React project. Before you begin, make sure you have Node.js and npm (Node Package Manager) installed on your system.

Prerequisites

Before you get started, ensure you have the following prerequisites installed:

Node.js: Download and install Node.js

Clone the Repository

  1. Open your terminal/command prompt.
  2. Navigate to the directory where you want to clone the project.
  3. Run the following command to clone the repository:
git clone git@github.com:thejaysharma/infinite-scrolling-task.git

Install Dependencies

  1. Change your working directory to the project folder:
cd infinite-scrolling-task
  1. Install project dependencies using npm:
npm install

Running the Development Server

  1. In the project directory, run the following command:
npm start

This will start the development server, and the React application should open in your default web browser. By default, the application will be available at http://localhost:3000/.