Become a member
Sign in
Nam Lê
Nam Lê

Nam Lê

25 Following
23 Followers
  • Profile

  • Highlights

Highlighted by Nam Lê

See more

From 10 Tips for Better Redux Architecture by Eric Elliott

…re to pure functions than this. If you’re going to use Redux for production apps, you really need a good grasp of what pure functions are, and other things you need to be mindful of (such as dealing with time, …

From 10 Tips for Better Redux Architecture by Eric Elliott

…’t like to worry about accidentally mutating my state, so lately I’ve been experimenting with using immutable data APIs with Redux. If my state is an immutable object, I don’t even need to look at the code to know that …

From 10 Tips for Better Redux Architecture by Eric Elliott

In order to achieve deterministic state reproduction, reducers must be pure functions. No exceptions. A pure function: