비공식 사이트. 24.12.31. 폐쇄예정
공식사이트 바로가기

Rules of ReactReact의 규칙

번역:정재남

Just as different programming languages have their own ways of expressing concepts, React has its own idioms — or rules — for how to express patterns in a way that is easy to understand and yields high-quality applications. 프로그래밍 언어마다 개념을 표현하는 고유한 방식이 있는 것처럼, React에는 이해하기 쉬우면서 고품질의 애플리케이션을 생성하기 위한, 패턴을 표현하는 방법에 대한 고유한 관용구(또는 규칙)이 있습니다.


Note

To learn more about expressing UIs with React, we recommend reading Thinking in React. React로 UI를 표현하는 방법에 대해 자세히 알아보려면 Thinking in React를 읽어보시기 바랍니다.

This section describes the rules you need to follow to write idiomatic React code. Writing idiomatic React code can help you write well organized, safe, and composable applications. These properties make your app more resilient to changes and makes it easier to work with other developers, libraries, and tools. 이 섹션에서는 관용적인 React 코드를 작성하기 위해 따라야 하는 규칙에 대해 설명합니다. 관용적인 React 코드를 작성하면 체계적이고 안전하며 구성이 용이한 애플리케이션을 작성하는 데 도움이 될 수 있습니다. 이러한 속성은 앱이 변경에 더 탄력적으로 대응하고 다른 개발자, 라이브러리 및 도구와 더 쉽게 작업할 수 있게 해줍니다.

These rules are known as the Rules of React. They are rules – and not just guidelines – in the sense that if they are broken, your app likely has bugs. Your code also becomes unidiomatic and harder to understand and reason about. 이러한 규칙을 React의 규칙이라고 합니다. 이 규칙을 어기면 앱에 버그가 있을 가능성이 높다는 점에서, 또한 코드가 단조로워지며, 이해 및 추론이 더욱 어려워진다는 점에서, 단순한 지침이 아닌 규칙입니다.

We strongly recommend using Strict Mode alongside React’s ESLint plugin to help your codebase follow the Rules of React. By following the Rules of React, you’ll be able to find and address these bugs and keep your application maintainable. 코드베이스가 React의 규칙을 따르도록 돕기 위해 React의 ESLint 플러그인과 함께 Strict 모드를 사용하는 것을 강력히 권장합니다. React의 규칙을 따르면 이러한 버그를 찾아서 해결하고 애플리케이션을 유지 관리할 수 있습니다.


Components and Hooks must be pure 컴포넌트와 Hook은 순수해야 합니다

Purity in Components and Hooks is a key rule of React that makes your app predictable, easy to debug, and allows React to automatically optimize your code. 컴포넌트와 Hook의 순수성은 앱을 예측 가능하고 디버깅하기 쉬우며 React가 자동으로 코드를 최적화할 수 있도록 하는 React의 핵심 규칙입니다.


React calls Components and Hooks React는 컴포넌트와 Hook을 호출합니다

React is responsible for rendering components and hooks when necessary to optimize the user experience. It is declarative: you tell React what to render in your component’s logic, and React will figure out how best to display it to your user. React는 사용자 경험을 최적화하기 위해 필요할 때 컴포넌트와 후크를 렌더링할 책임이 있습니다. 이는 선언적입니다. 컴포넌트의 로직에서 무엇을 렌더링할지를 React에게 알려주면, React는 사용자에게 가장 잘 표시하는 방법을 알아서 찾아냅니다.


Rules of Hooks Hook의 규칙

Hooks are defined using JavaScript functions, but they represent a special type of reusable UI logic with restrictions on where they can be called. You need to follow the Rules of Hooks when using them. Hook은 자바스크립트 함수를 사용하여 정의되지만 호출할 수 있는 위치에 제한이 있는, 특별한 유형의 재사용 가능한 UI 로직을 나타냅니다. 훅을 사용할 때는 Hook의 규칙을 따라야 합니다.