brillout / awesome-redux

Catalog of Redux Libraries & Learning Material
https://devarchy.com/redux
Creative Commons Zero v1.0 Universal
382 stars 39 forks source link

Add action-creator-mirror #6

Closed bliu2000 closed 4 years ago

bliu2000 commented 7 years ago

I suggest to add action-creator-mirror to the list.

It's a more effective way to organise Redux action creator codes.

It's inspired by Flux Standard Action and Key Mirror. It’s designed for people:

  • Who don’t want to write constant strings. (never write const ADD_TODO = 'ADD_TODO')
  • Who want single source of truth and don’t want to look over actions back and forth.
  • Who want to group relative variables and concepts into one array.
  • Who still want to keep the redux real.
  • And (most importantly) who want to use the Auto-Completing feature in IDEs.
brillout commented 6 years ago

Is there a reason you didn't use https://devarchy.com/redux to add it?