DEV Community

Discussion on: React - Redux In Less Then 7 Minutes

Collapse
 
markerikson profile image
Mark Erikson

The patterns shown here are the original Redux usage patterns that we've shown since day 1: hand-written immutable update logic, SCREAMING_SNAKE_CASE constants, separate "actions" and "reducers" files, and use of connect.

The pieces that we now call "modern Redux" have come out over time:

  • The React-Redux hooks API was launched in React-Redux v7.1, in June 2019
  • The Redux "Style Guide" page was published in fall 2019
  • Redux Toolkit 1.0 was released in October 2019
  • Last year I rewrote the Redux docs tutorials from scratch. I published the "Essentials" tutorial around June, and the "Fundamentals" tutorial at the end of October