npm install -g react-cli react
npx create-react-app <appname> // eg: npx create-react-app blog
cd <appname> // cd blog
npm start //runs on localhost:3000
npm install -g create-react-app -> install create react app tools
create-react-app app01 -> create your first projects app001
#Type in terminal at address you want to create project
npx create-react-app <name_you_want_your_project_called>
#the name of your project must be all lowercase and omit the <>
npx create-react-app <appname> ## eg: npx create-react-app blog
cd <appname> ## cd blog
npm start ## runs on localhost:3000
C:UsersusernameDesktop
eactApp>npm install webpack webpack-dev-server webpack-cli --save
C:UsersusernameDesktop
eactApp>npm install babel-core babel-loader babel-preset-env
babel-preset-react html-webpack-plugin --save-dev