Redux Development Environment Setup on Rails 5.x + React.js + Webpacker
Tadashi Shigeoka · Wed, November 8, 2017
I added Redux to the Rails 5.x + Webpacker + React.js development environment, so I’ll introduce that content.
Redux Development Environment Setup
As a prerequisite, I assume that the Rails 5.x + Webpacker + React.js development environment setup has been completed following this article:
Installing Redux
Install Redux-related packages using the yarn add command.
yarn add redux
yarn add react-redux
yarn add redux-devtools --dev
yarn add react-tap-event-plugin
That’s all from the Gemba, where I want to use Redux with Rails as well.
Reference Information
That’s all from the Gemba.