React project initialization

npm install -g create-react-app
mkdir my-react-app
cd my-react-app
create-react-app . #without ES6 support
create-react-app . --template cra-template-pwa-typescript #with ES6 support, use type script
cd my-react-app
npm start