August 2017
Beginner
374 pages
10h 41m
English
You can use the example code from the chapter5_1.zip attachment. Do not forget to install dependencies:
npm install
Then, we can build and run the app in production mode by executing the following command:
npm start
This command will build your application with webpack, then serve the static production files from a directory.
Alternatively, we can run our application in development mode by executing the following command:
npm run start:dev
The preceding command will run your application with webpack-dev-server and Redux DevTools.
Read now
Unlock full access