How to Use async/await in React useEffect() Hook?

Since the React useEffect callback function cannot be async, you can do either of the following:

  1. Create a Self-Invoking Anonymous Function;
  2. Create a Nested Named Function.

Create a Self-Invoking Anonymous Function

You can simply create a self-invoking anonymous function inside the useEffect hook that does the asynchronous call(s) and performs other related tasks. For example:

// ...

useEffect(() => {
    (async function() {
      const products = await fetch(`${API_URL}/products.json`);
      setProducts(products);
    })();
}, []);

// ...

Create a Nested Named Function

You can create a named asynchronous function that you can call right after it is declared, for example, like so:

// ...

useEffect(() => {
    const fetchData = async () => {
      const products = await fetch(`${API_URL}/products.json`);
      setProducts(products);
    });

    fetchData();
}, []);

// ...

This post was published (and was last revised ) by Daniyal Hamid. Daniyal currently works as the Head of Engineering in Germany and has 20+ years of experience in software engineering, design and marketing. Please show your love and support by sharing this post.