Scaffolding for a new, fresh and clean react application
Install all the dependencies
$ npm installRun webpack dev server
$ npm startRun production build
$ npm run buildThis public directory is used to handle any static assets, like our html files.
We use this compiler to allow us write modern Javascript that still works in older browser versions
This is extremely useful for the performance of our apps, webpack is a module bundler, it let us write modular code and bundle it together into small and optimized packages.