Beginning React
React continues to be extremely popular in the front-end world. Whether you’re in the job market or are curious to explore React's massive ecosystem, learning it will help you become a better developer. In this series, we'll review the basics of using React. We’ll learn about JSX, state, events, hooks, extracting components, props, and more.
Updated Series Available
You are viewing an archived course. We instead recommend that you watch React from Scratch.
Progress
Series Info
- Episodes
- 19
- Run Time
- 5h 27m
- Difficulty
- Intermediate
- Last Updated
- Jul 19, 2021
- Version
- React 17.0.2
Series Episodes
- Introduction (2)
- The Obligatory Todo App (10)
Make Use of State
Let's have a look at leveraging state in React using hooks. We'll also briefly review how it’s done using class-based components.Event Listeners
Next, we'll learn how to leverage events and event listeners in React. In the process, we'll implement the adding and removing functionality for our todo app.Editing Todos
In this episode, we continue to build out our todo app and work on completing and editing todos. We’ll continue to make use of new events, as well as conditional rendering in JSX.Extracting Components
In this lesson, we extract multiple components and learn how to pass state between them using props. We also take a look at the prop-types library to validate our props.More Todo Features
Let's continue adding more todo features as new components in our application.Other Built-in React Hooks
Let's have a look at some more React hooks that are available to you, includinguseRef,useEffect, anduseMemo.Custom Hooks
Let's now review a few examples that make use of custom hooks to extract and clean up repeated logic.Context for State Management
Next, we'll use the Context API to provide global state to our application. This removes the need to pass props between components to manage state and can significantly clean up our code.CSS Transitions with React Transition Group
A few subtle transitions in your app can go a long way. Let's take a look at how to accomplish this using React Transition Group.React Router
Let’s take a look at basic routing with React Router. In this video, we'll add a few pages to our application and learn how to create routes and link between them.
- Fetching Data (3)
Fetching Data
Fetching data from an external server is something you’re going to have to do when building web apps. In this video, we’ll take a look at doing it the traditional way with basic state and theuseEffecthook.Fetching Data with Custom Hooks
Let’s expand upon the code we wrote in the previous video and clean it up using custom hooks.Fetching Data with React Query
Let's review the extremely popular React Query library to fetch our data. We’ll discuss caching, error retrying, and background fetching.
- GitHub Issues Project (2)
GitHub Issues Project: Part 1
Let’s reach for all the React knowledge we've learned so far to build a slimmed-down version of GitHub Issues that makes use of the GitHub REST API to fetch data.GitHub Issues Project: Part 2
Let’s finish up this mini-project and work on the details page to grab details about the issue as well as all of its comments.
- Wrapping Up (2)
