Hacker News
- Understanding UseMemo and UseCallback https://www.joshwcomeau.com/react/usememo-and-usecallback/ 84 comments
- Not using useCallback is premature optimization https://jnystad.no/post/not-using-usecallback-is-premature-optimization 23 comments
Lobsters
- Understanding useMemo and useCallback https://www.joshwcomeau.com/react/usememo-and-usecallback/ 3 comments javascript , web
- How far is this article from Kent c Dodds about useCallback and useMemo still relevant? Did these best practises change in the last years? https://kentcdodds.com/blog/usememo-and-usecallback 29 comments reactjs
- useCallback, but without the warts https://github.com/stutrek/use-callback-stable 25 comments javascript
- useCallback vs. useMemo - my first youtube video (feedback appreciated 🙏) https://www.youtube.com/watch?t=1s&v=M8NaTJN8xh4 76 comments reactjs
- After endless frustration reading people's bad takes on useMemo and useCallback, I wrote a short article. Hopefully it can clear up some misconceptions! https://medium.com/@texonidas/why-you-are-wrong-about-usememo-and-usecallback-stable-references-and-dependency-arrays-04bcb72977bb 51 comments reactjs
- Do we really need to wrap every function in useCallback or useMemo? https://kyleshevlin.com/use-encapsulation 93 comments reactjs
- Does useCallback prevent from creating function in memory every time? https://beta.reactjs.org/apis/react/useCallback 6 comments reactjs
- A Better Way to useMemo and useCallback https://betterprogramming.pub/a-better-way-to-usememo-and-usecallback-58288a19f91c 2 comments javascript
- Clarification on useCallback, In this hook https://usehooks-ts.com/react-hook/use-is-mounted 5 comments reactjs
- A Deep Dive Comparison Between useMemo And useCallback https://www.chakshunyu.com/blog/a-deep-dive-comparison-between-usememo-and-usecallback/ 7 comments javascript
- A Deep Dive Comparison Between useMemo And useCallback https://www.chakshunyu.com/blog/a-deep-dive-comparison-between-usememo-and-usecallback/ 2 comments reactjs
- How to create json file to fetch the data with useCallback hook https://api.thedogapi.com/v1/breeds/ 8 comments reactjs
- A Visual Guide to React Rendering - useCallback https://alexsidorenko.com/blog/react-render-usecallback/ 20 comments reactjs
- I'm new to React Hooks so as I was learning myself I wrote this tutorial. Hope it helps someone out there. (Covers useState, useEffect, useRef, useCallback, useMemo and making your own hooks) https://jstutorial.medium.com/react-hooks-for-beginners-e75237f9c220?sk=f9ee1cd4b93330e5c098f7641deda6ff 11 comments reactjs
- I made a drop-in replacement for React.memo() that doesn't require useCallback() https://codesandbox.io/s/react-memo-plus-demo-jn46q?file=%2Fsrc%2FTodoItem.tsx 9 comments reactjs
- useCallback Might Be What You Meant By useRef & useEffect https://medium.com/welldone-software/usecallback-might-be-what-you-meant-by-useref-useeffect-773bc0278ae 14 comments reactjs
- Stop useEffect from running on every render with useCallback https://maxrozen.com/stop-useeffect-running-every-render-with-usecallback/ 34 comments reactjs
- useMemo and useCallback yet another question https://reactjs.org/docs/hooks-reference.html#usecallback 4 comments reactjs
- I've created use-const-callback - it's like `useCallback`, but you never have to worry about dependencies https://github.com/pie6k/use-const-callback 51 comments reactjs
- react-handler-hooks - Just like useCallback, but with passing parameters, less hassle, no re-renders of children and no dependency list! https://github.com/ArielJurkowski/react-handler-hooks 10 comments reactjs
- Should we useMemo and useCallback? https://kentcdodds.com/blog/usememo-and-usecallback 13 comments reactjs
- Is there a difference between useCallback(f, []) and useRef(f).current? https://github.com/reactjs/reactjs.org/issues/2570 8 comments reactjs
- Kent C Dodds: When to useMemo and useCallback https://kentcdodds.com/blog/usememo-and-usecallback/ 7 comments reactjs
- useCallback vs useMemo 🎓 https://medium.com/@jan.hesters/usecallback-vs-usememo-c23ad1dc60 5 comments reactjs
- How it is possible that useCallback in children trigger a render in parent component? https://codesandbox.io/s/zz95v5103 3 comments reactjs
- A closer look at React “Memoize” Hooks (useMemo, useCallback, useRef) https://www.codebeast.dev/react-memoize-hooks-useRef-useCallback-useMemo 9 comments reactjs
- useMemoOne: a useMemo and useCallback alternative with a stable cache https://github.com/alexreardon/use-memo-one 5 comments reactjs
- Creating a Reusable Window Event Listener with useEffect and useCallback https://codedaily.io/tutorials/72/Creating-a-Reusable-Window-Event-Listener-with-useEffect-and-useCallback 4 comments reactjs