This project is a simple code-along with the Pro React textbook.
The original boilerplate repository
git clone git@github.com:pro-react/react-app-boilerplate.git
Install
npm install
Start the application in development mode
npm start
Open http://localhost:8080 in your browser.
Static files are served from the public
folder, project JavaScript files are bundled from the app
folder.
When ready, build for production
npm run build
This will generate a minimized bundle.js file on the public
folder.
--Original--
- React & React-DOM
- Webpack & webpack-dev-server
- Babel Core
- Babel Loader (With "es2015" and "react" presets)
--What I added--