1. Install Nodejs
#> curl -sL https://deb.nodesource.com/setup_12.x | sudo -E bash –
#> sudo apt-get install -y nodejs
2. Update NPM(optional)
#> sudo npm install npm@latest -g
3. Install Create-React-App Tool
#> npm install -g create-react-app
4. Creating a New React Project
#> create-react-app test-project
#> npx create-react-app test-project
5. Running the Application
#> cd test-project
#> npm start
6.Web
http://localhost:3000