Create React Project
Run the following command to create a new React project.
npx create-react-app lr_webchat
This command will create a new folder called lr_webchat
with the basic structure of a React project.
If you already have an existing folder and you want to initialize a new React project in that folder, you can use the command with a period(.
) to specify the current directory.
npx create-react-app .
Start the development server by running:
npm start
This command will start the development server, and you can view your React app in a web browser at http://localhost:3000/
.