React의 시그널 소개 🚥
프리액트
Preact은 React와 동일한 API를 사용하는 3kb 대체 라이브러리입니다. 그러나 더 작기 때문에 브라우저에 더 적은 코드를 제공합니다.
최근에 그들은 Signals라고 불리는 반응을 설치할 수 있는 새로운 패키지를 발표했습니다.
Docs
문서에 따르면:
What makes Signals unique is that state changes automatically update components and UI in the most efficient way possible. Automatic state binding and dependency tracking allows Signals to provide excellent ergonomics and productivity while eliminating the most common state management footguns.
신호가 하는 일은 속성을 포함하는 객체입니다
.value
. 신호/객체가 동일하게 유지되지만 해당 값이 변경될 수 있다고 정의하면 해당 값에 대한 참조가 업데이트될 수 있도록 이 변경 사항을 알립니다.이것을 흥미롭게 만드는 몇 가지 사항은,
반응에 신호를 설치하려면
npm install @preact/signals-react
간단한 사용 사례
import {signal} from '@preact/signals-react'
//create a signal
const count = signal(0)
const App = () =>{
return(
<>
<p>{count.value}</p>
</>
)}
Preact signal Github
그래서 그것을 시도하고 너희들이 어떻게 생각하는지 알려주십시오.
건배와 행복한 코딩 🍻👩💻
Reference
이 문제에 관하여(React의 시그널 소개 🚥), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/ishan_parlikar/introducing-signals-in-react-28k6텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)