So far, in all the recipes, we have used React directly with create-react-app or Webpack 4. In this recipe, we are going to implement React and Redux using Node.js and Webpack 4; this will help us to have more robust applications.
Implementing Node.js with React/Redux and Webpack 4
Getting Ready
Using the same code of the last recipe, you will need to install all these packages:
npm install babel-cli express nodemon react-hot-loader react-router-dom webpack-hot-middleware compression-webpack-plugin react-redux redux
How to do it...
Let's get started with the implementation...