A data fetching example

The example in the previous section should explain clearly how to set up a Universal application in React.

It is pretty straightforward, and the main focus is on getting things done with regard to its configuration.

However, in a real-world application, we will likely want to load some data instead of a static React component such as the App in the example. Suppose we want to load Dan Abramov's gists on the server and return the list of items from the Express app we just created.

In the data fetching examples in Chapter 5, Proper Data Fetching, we looked at how we can use componentDidMount to fire the data loading. That wouldn't work on the server because components do not get mounted on the DOM and the lifecycle hook never ...

Get React Design Patterns and Best Practices now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.