In this project we’re going to create a form. We wait for the user to type in a GitHub username, and when this happens we ask to the GitHub API the user’s public information, and we show a nice user card.

This project will teach you two new things compared to the previous one:

  • iterations in JSX
  • how to handle a simple form in React
  • how to perform network requests and update the state of the application when we get the information back

This is what we’ll end up creating:

The React example output

Sounds good? Let’s start!


Go to the next lesson