Misc

Rob SOAP Markdown CLI - Windows CLI - Unix Git NodeJS jslint Batch File Animation Tools React JS Sublime Shortcuts
O O

Weather Controls

Time Of Day
Rain
Wind Speed
Wind Direction
Clouds

Misc : React JS

2018-05-16

Summary

This is setting up and using React JS.

Installation Setup

Download and Install Node and NPM

https://nodejs.org/en/

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

http://babeljs.io/

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

Use Guide

http://buildwithreact.com/tutorial