본문 바로가기

1일1글4

TIL : useCallback()은 내부적으로 useMemo()를 사용한다. useCallback은 메모이제이션 된 콜백을 반환한다. useMemo 메모이제이션된 값을 반환한다. 공식문서에 따르면 useCallback(fn, deps)은 useMemo(() => fn, deps)와 같습니다. 라고 한다. 값대신 함수를 메모이제이션을 의도 한 것이니, useMemo 를 사용했나보다. export function useCallback( callback: T, deps: Array | void | null, ): T { return useMemo(() => callback, deps); } 추가로 useCallback과 useMemo 를 적절하게 사용하면 렌더링 최적화를 누릴 수 있지만, 무분별 하게 사용했을 때는 메모이제이션 용 메모리를 따로 할당해야 함으로 오히려 불필요한 리소스가.. 2022. 5. 18.
[1일 1글] Git commit message 를 잘 작성하는 법 * [1일1글] 다양한 커뮤니티사이트 등에서 본 글을 공유하고 짤막한 저의 생각을 공유합니다. 오늘은 git commit message를 작성함에 있어 유용한 글을 가져와 보았습니다. 평소에 커밋메세지를 작성할때 늘 고민이 많은데 너무나 좋은 글인 것 같습니다! blog.ull.im/engineering/2019/03/10/logs-on-git.html ull.im 울려 퍼지다. 반향하다. 공명하다. blog.ull.im 2021. 4. 7.
[1일1글] 프론트개발을 시작하는 이들에게 추천하는 방법 * [1일1글] 다양한 커뮤니티사이트 등에서 본 글을 공유하고 짤막한 저의 생각을 공유합니다. [원문] medium.com/free-code-camp/how-i-went-from-newbie-to-software-engineer-in-9-months-while-working-full-time-460bd8485847 How I went from newbie to Software Engineer in 9 months while working full time In this post, I’ll share how I went from zero(ish) to a six-figure software engineering job offer in nine months while working full time… med.. 2021. 3. 23.
[1일1글] The Ugly Side of React Hooks (리액트 훅스의 어두운면) 그럼에도 내가 react-hooks를 쓰는 이유 * [1일1글] 다양한 커뮤니티사이트 등에서 본 글을 공유하고 짤막한 저의 생각을 공유합니다. 오늘 단톡방에서 react-hooks와 class에대한 이야기가 나왔길래 얼마전에 읽은 글이 생각나서 공유해본다. [원문] medium.com/swlh/the-ugly-side-of-hooks-584f0f8136b6 The Ugly Side of React Hooks In this post, I will share my own point of view about React Hooks, and as the title of this post implies, I am not a big fan. medium.com [번역문] ui.toast.com/weekly-pick/ko_20200922 React Hook의 어두운.. 2021. 3. 22.