고라니드로koranidro.hashnode.dev·Sep 3, 2024[React] 변화의 물결, 동시성 렌더링이 포스트는 React 버전 18.3.1을 기준으로 합니다. 동시성 렌더링은 18 버전부터 정식 도입된 새로운 메커니즘입니다. 이는 아직 불완전하지만, 많은 가능성을 보여주었습니다. Suspense, useDeferredValue 등이 그 결과물이지요. 하지만 그와 동시에 이전에 없던 많은 문제를 불러왔습니다. 이번 포스트에서는 이것이 어떻게 동작하고, 또 어느 부분이 문제가 되는지 알아보도록 하겠습니다. 어떻게 동작하는가 동시성 적용에 가장...32 readsconcurrent-rendering
Ayush Kumar Tiwariitsayu.hashnode.dev·Jun 12, 2024What’s New in React 19?React 19 introduces several exciting features that make managing state, document metadata, handling errors, and working with asynchronous tasks easier for developers. These improvements aim to simplify development and optimize performance in React ap...React
Abeer Abdul Ahadabeer.hashnode.dev·Jun 12, 2024Crucial React Hooks That Are Less UnderstoodIntroduction As React has become the top choice for building web applications, it's important to master all the concepts and topics that makes learning react incomplete without. If you have ever studied react for at least once, I am sure you know tha...28 readsReactReact
Ted Leeted-projects.com·May 14, 2024[번역] React.useDeferredValue() 는 어떻게 동작하나요?영문 블로그 글을 번역했습니다. 허가를 받으면 시리즈를 이어갈 예정입니다.원문링크:https://jser.dev/react/2022/01/26/how-does-react-usedeferredvalue-work ℹ️React Internals Deep Dive 에피소드 17, 유튜브에서 제가 설명하는 것을 시청해주세요. ⚠React@18.2.0기준, 최신 버전에서는 구현이 변경되었을 수 있습니다. 💬 역자 주석: JSer의 코멘트는 ❗❗로...React Internals Deep Dive 번역 시리즈react internals
Nikhil Kumar Patranikhilkumarpatra47.hashnode.dev·Feb 5, 2023React hooks - useReducer, useTransition, useDeferredValueIntroduction In my last blog, I explained about the useMemo, useCallback, React.memo. Now, we will see the use of useReducer, useTransition, and useDeferredValue. Before useReducer came along, the only way to manage complex state transition was to us...1 like·129 readsuseReducer