First of all: mkdir MyFirstReactProjectFromScratch
cd MyFirstReactProjectFromScratch
npm init -y This will initialize and setup an Npm package and allow you to install dependencies. There are 3 important things we will need: Webpack: responsible for bundling; Babel: responsible for compiling; React: responsible for rendering. Following the Webpack docs, we are…