fbpx
4.65 de 5
4.65
138495 reseñas sobre Udemy

React – The Complete Guide (incl Hooks, React Router, Redux)

Dive in and learn React.js from scratch! Learn Reactjs, Hooks, Redux, React Routing, Animations, Next.js and way more!
Instructor:
Academind by Maximilian Schwarzmüller
512.901 estudiantes matriculados
English Más
Build powerful, fast, user-friendly and reactive web apps
Provide amazing user experiences by leveraging the power of JavaScript with ease
Apply for high-paid jobs or work as a freelancer in one the most-demanded sectors you can find in web dev right now
Learn all about React Hooks and React Components

This course is the most up-to-date, comprehensive and bestselling React course on Udemy!

It was completely updated and re-recorded from the ground up – it teaches the very latest version of React with all the core, modern features you need to know!

This course also comes with two paths which you can take: The “complete” path (full >40h course) and the “summary” path (~4h summary module) – you can choose the path that best fits your time requirements! 🙂

React.js is THE most popular JavaScript library you can use and learn these days to build modern, reactive user interfaces for the web.

This course teaches you React in-depth, from the ground up, step by step by diving into all the core basics, exploring tons of examples and also introducing you to advanced concepts as well.

You’ll get all the theory, tons of examples and demos, assignments and exercises and tons of important knowledge that is skipped by most other resources – after all, there is a reason why this course is that huge! 🙂

And in case you don’t even know why you would want to learn React and you’re just here because of some ad or “the algorithm” – no worries: ReactJS is a key technology as a web developer and in this course I will also explain WHY it’s that important!

Welcome to “React – The Complete Guide”!

This course will teach you React.js in a practice-oriented way, using all the latest patterns and best practices you need. You will learn all the key fundamentals as well as advanced concepts and related topics to turn you into a React.js developer.

This is a huge course because it really covers EVERYTHING you need to know and learn to become a React.js developer!

No matter if you know nothing about React or if you already got some basic React knowledge (not required but also not a problem), you will get tons of useful information and knowledge out of this course!

My goal with this course is to ensure that you feel confident working with React, so that you can apply for React jobs, use it in your own projects or simply enhance your portfolio as a developer – whatever your goal is: This course gets you there!

I originally created this course in 2017 and I have kept it updated since that – redoing it from the ground up in 2021. And of course I’m dedicated to keeping this course up-to-date – so that you can rely on this course to learn React in the best possible way!

What’s in this course?

  • A thorough introduction to React.js (What is it and why would you use it?)

  • All the core basics: How React works, building components with React & building UIs with React

  • Components, props & dynamic data binding

  • Working with user events and state to create interactive applications

  • A (thorough) look behind the scenes to understand how React works under the hood

  • Detailed explanations on how to work with lists and conditional content

  • React Hooks (in-depth)!

  • Working with built-in Hooks and building custom Hooks

  • How to debug React apps

  • Styling React apps with “Styled Components” and “CSS Modules”

  • Working with “Fragments” & “Portals”

  • Dealing with side effects

  • Class-based components and functional components

  • Sending Http requests & handling transitional states + responses

  • Handling forms and user input (incl. validation)

  • Redux & Redux Toolkit

  • Routing with React Router

  • An in-depth introduction into Next.js

  • Deploying React Apps

  • Implementing Authentication

  • Unit Tests

  • Combining React with TypeScript

  • Adding Animations

  • Tons of examples and demo projects so that you can apply all the things you learned in real projects

  • And so much more – check out the full curriculum on this page!

This really is the “Complete Guide” – promised!

And best of all?

You don’t need any prior React knowledge!

This course starts with zero knowledge assumed! All you need is basic web development and JavaScript knowledge (though the course even includes a brief JavaScript refresher to ensure that we’re all on the same page!).

Check out the full curriculum, the free preview videos and join the course risk-free thanks to the 30-day money-back guarantee!

Getting Started

1
Welcome To The Course!
2
What is React.js?
3
Why React Instead Of "Just JavaScript"?
4
Building Single-Page Applications (SPAs) with React
5
Exploring React.js Alternatives (Angular / Vue)
6
Join our Online Learning Community

Learning alone is absolutely fine but finding learning partners might be a nice thing, too. Our learning community is a great place to learn and grow together - of course it's 100% free and optional!

7
About This Course & Course Outline
8
The Two Ways (Paths) Of Taking This Course
9
Getting The Most Out Of This Course
10
Setting Up The Course Dev Environment (Code Editor)

JavaScript Refresher

1
Module Introduction

Let me introduce you to this module and to what you're going to learn in it.

2
Understanding "let" and "const"

One important next-gen feature you're going to see a lot is the usage of "const" and "let" instead of "var". What's up with these keywords? This lecture answers the question.

3
Arrow Functions

Arrow functions are another key next-gen feature we'll heavily use in this course. Let's dive into how to write them and how to use them in this lecture.

4
Exports and Imports

We'll write modular code in this course. That means, that the code will be split up across multiple files. In order to connect these files correctly, we'll need imports and exports. So let's dive into that feature in this lecture.

5
Understanding Classes

The "class" keyword is another new feature you'll see quite a bit in this course. Learn what it's about in this lecture.

6
Classes, Properties and Methods

Classes may have properties and methods. There actually are different ways of defining these. Let's dive into the details in this lecture.

7
The Spread & Rest Operator

React also makes heavy usage of the "Spread" operator. Or React projects do, to be precise. Learn more about that new operator in this lecture.

8
Destructuring

Time to destructure! It's a new JavaScript feature and it allows you to ... do what? Let's explore the feature in this lecture.

9
Reference and Primitive Types Refresher

Not next-gen but super important: Knowing the difference between reference and primitive types. This lecture will explore both.

10
Refreshing Array Functions

We'll use a lot of array functions in this course. They're not next-gen but you need to feel confident working with them. So let's explore them in this lecture.

11
Wrap Up

Let me wrap this module up and summarize what we learned thus far.

12
Next-Gen JavaScript - Summary

Have a look at this lecture to get a good overview over the various next-gen JS features you'll encounter in this course.

13
JS Array Functions

Here's something we'll also use quite a bit in this course: Some JavaScript array functions.

React Basics & Working With Components

1
Module Introduction
2
What Are Components? And Why Is React All About Them?
3
React Code Is Written In A "Declarative Way"!
4
A Note About New React Projects & NodeJS
5
Creating a new React Project
6
The Starting Project
7
Analyzing a Standard React Project
8
Introducing JSX
9
How React Works
10
Building a First Custom Component
11
Writing More Complex JSX Code
12
Adding Basic CSS Styling
13
Outputting Dynamic Data & Working with Expressions in JSX
14
Passing Data via "props"
15
Adding "normal" JavaScript Logic to Components
16
Splitting Components Into Multiple Components
17
Time to Practice: React & Component Basics
18
The Concept of "Composition" ("children props")
19
A First Summary
20
A Closer Look At JSX
21
Organizing Component Files
22
An Alternative Function Syntax
23
Learning Check: React Basics, Components, Props & JSX

In this course module, you learned about key React features which you must know for every React app you're going to build! Hence it's time to check what you learned and verify that we're all on the same page!

24
Module Resources

React State & Working with Events

1
Module Introduction
2
Listening to Events & Working with Event Handlers
3
How Component Functions Are Executed
4
Working with "State"
5
A Closer Look at the "useState" Hook
6
State can be updated in many ways!
7
Adding Form Inputs
8
Listening to User Input
9
Working with Multiple States
10
Using One State Instead (And What's Better)
11
Updating State That Depends On The Previous State
12
Handling Form Submission
13
Adding Two-Way Binding
14
Child-to-Parent Component Communication (Bottom-up)
15
Lifting The State Up
16
Time to Practice: Working with Events & State
17
Controlled vs Uncontrolled Components & Stateless vs Stateful Components
18
Learning Check: Working with Events & State
19
Module Resources

Rendering Lists & Conditional Content

1
Module Introduction
2
Rendering Lists of Data
3
Using Stateful Lists
4
Understanding "Keys"
5
Time to Practice: Working with Lists
6
Outputting Conditional Content
7
Adding Conditional Return Statements
8
Time to Practice: Conditional Content
9
Demo App: Adding a Chart
10
Adding Dynamic Styles
11
Wrap Up & Next Steps
12
Fixing a Small Bug
13
Learning Check: Outputting Lists & Conditional Content
14
Module Resources

Styling React Components

1
Module Introduction
2
Setting Dynamic Inline Styles
3
Setting CSS Classes Dynamically
4
Introducing Styled Components
5
Styled Components & Dynamic Props
6
Styled Components & Media Queries
7
Using CSS Modules
8
Dynamic Styles with CSS Modules
9
Module Resources

Debugging React Apps

1
Module Introduction
2
Understanding React Error Messages
3
Analyzing Code Flow & Warnings
4
Working with Breakpoints
4.7
4.7 de 5
Calificaciones 138495

Calificación Detallada

5 estrellas
88751
4 estrellas
39768
3 estrellas
7147
2 estrellas
999
1 estrellas
706
2e136186b64fdfc774787a91f4402777
Garantía de devolución de dinero de 30 días

Incluye

48 horas de video a pedido
47 artículos
Acceso completo de por vida
Acceso en el móvil y en la televisión
Certificado de finalización
React – The Complete Guide (incl Hooks, React Router, Redux)
Precio:
$189.99 $130
bubble_bg_popup.png

Descarga las Herramientas Gratis