[React] How to create web application
This blog is going to tell you how to create the web application using React.js 1. Go to react website to get first tutorial https://reactjs.org/tutorial/tutorial.html - Make sure you have a recent version of Node.js installed. - Follow the installation instructions for Create React App to make a new project. Install NodeJS Node >= 8.10 (v13.5.0) and npm >= 5.6 (6.13.4) on your machine. To create a project, run: npx create-react-app my-app cd my-app npm start This will let you go to url : http://localhost:3000/ 2. Install YARN > npm install -g yarn 2. Add bootstrap go to react https://reactstrap.github.io/ > npm install --save reactstrap react react-dom > npm install --save bootstrap or > yarn add bootstrap reactstrap 4. Add AXIOS > npm install axios --save 5. Add .env to root folder Define key and value as needed e.g. PORT=3001 Alternative Re...