Netlify

Use case: ReactJS doesn’t render on some of the hosting platforms.

Netlify is a web hosting infrastructure and automation technology company based in San Francisco. Netlify works by connecting to your GitHub repository to pull your source code, then it typically runs a build process to pre-render all of your pages in static HTML.

The Git workflow for web development. Build, deploy, and manage modern web projects.

Create React App

Create React App without create-react-app : https://medium.com/@paul.allies/react-create-app-without-react-create-app-7c8341282645

First let’s create a folder for new project and install all dependencies
$> mkdir reactproject
$> cd reactproject
$> npm init
$> npm i -S react react-dom
$> npm i -D webpack webpack-cli webpack-dev-server
$> npm i -D babel babel-core babel-loader babel-preset-env babel-preset-react html-webpack-plugin http-server