useEffect.dev
← Back to lessons

Additional resources and links

Here is a small list of resources I found useful to understand hooks or use them every day to conclude this guide.

Hooks

Find new hooks

  • useHooks, Easy to understand React Hook recipes: many custom hooks, commented so you could know how they work. Very nice if you prefer developing custom hooks for a precise need instead of just looking for a third-party library.
  • Hooks with React Redux: if you use Redux, you’ll be happy to know that you can now use it with some handy hooks it provides.
  • React Native Hooks: hooks can make your code cleaner in React Native too. Here you’ll find hooks for everyday operations, such as accessing the clipboard or getting the device orientation.

Advanced resources

  • A Complete Guide to useEffect: written by Dan Abramov, a profound article. Don’t expect to read it during a small break, but if you master everything said in this article, you can consider yourself an expert with useEffect. All the posts on this blog are worth reading.
  • Why React Hooks over HOCs: if you used high-order components a lot, here is an article comparing them with hooks and explaining how hooks often represent a better way to do things.
  • A Thoughtful Way To Use React’s useRef() Hook: some situations where using a ref with useRef can be useful.