Misc : React JS
Summary
This is setting up and using React JS.
Installation Setup
Download and Install Node and NPM
You can make sure you have them installed by running these commands in windows command line:
node -v
npm -v
Install React
https://reactjs.org/docs/installation.html
npm install -g create-react-app
create-react-app my-app
Install Babel
Babel is a javascript compiler that lets you write modern JavaScript code that still works in older browsers. It wants to be installed for each project.
Go to the directory of the project in windows cli.
Install It:
npm install --save-dev babel-cli babel-preset-env