Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update 2024-07-18-redux.md #126

Merged
merged 1 commit into from
Aug 22, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions _posts/2024-07-18-redux.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ React는 상위에서 하위로 데이터를 내려줘야 하는데, 이때 프

애플리케이션의 상태를 중앙에서 관리할 수 있는 전역 상태 관리 라이브러리 중 하나이다.

Redux는 액션이라는 이벤트를 사용하여 애플리케이션 상태를 관리하고 업데이트 하기 위한 패턴과 라이브러리이다. 이는 전체 애플리케이션에서 사용해야 하는 상태에 대한 중앙 저장소 역할을 하며, 규칙은 상태가 예측 가능한 방식으로만 업데이트될 수 있도록 보장한다.

Redux는 3가지 원칙이 있다.
* 데이터는 항상 같은 공간 (하나 뿐인 store)에서 관리한다
* 액션 객체를 통해서만 상태를 변경할 수 있다
Expand Down
Loading