Programming/JavaScript & TypeScript

[상태관리 라이브러리] Redux

홍열 2022. 5. 20. 15:15
728x90

Redux는 단점이 많아 최근에 나온 Redux Toolkit을 더 많이 사용한다. 

https://redux-toolkit.js.org/

 

Redux Toolkit | Redux Toolkit

The official, opinionated, batteries-included toolset for efficient Redux development

redux-toolkit.js.org

언젠가는 다 정리하도록 해야겠다....

머리속에는 있는데 글쓰기가 귀찮다.

--------------------------------------------------------------------------------

Flux 패턴을 이용한 라이브러리

 

provider / store

useDispatch / dispatch

useSelector

 

why React?

official React

support

 

Application의 state를 관리한다. 

One way data flow

Immutable

 

전역상태 관리, 단 방향 데이터 흐름, 구성요소가 있다.