React environment setup guide
How to setup React Environment in Windows OS
Step 1: Install Visual studio from https://code.visualstudio.com/
Step 2: Open terminal which is integrated with VS Code.
Step 3: Go to Terminal tab and open terminal.
Step 4: Install git bash from https://gitforwindows.org/
With git bash you are now able to access the underlying git projects and git folders that we will use throughout the your application because we want to push to git hub. It is much easier to understand controls.
Step 5: Install node https://nodejs.org/en/download/
Node is actually allows to run the JavaScript inside of our terminal. It manage JavaScript packages for all of the application which we going to build. Node is also comes with NPM which is node package manager.
Step 6: make sure that node and npm are properly installed in our computer. Open terminal and git node -v
and npm -v
and check the version of both.
Step 6: Add some extension to vs code so your code will become beautiful for better readability
That’s it ….Now you are ready to start building your first React App.
THANKS ALL…..