Udemy
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
Development
Web Development Data Science Mobile Development Programming Languages Game Development Database Design & Development Software Testing Software Engineering Development Tools No-Code Development
Business
Entrepreneurship Communications Management Sales Business Strategy Operations Project Management Business Law Business Analytics & Intelligence Human Resources Industry E-Commerce Media Real Estate Other Business
Finance & Accounting
Accounting & Bookkeeping Compliance Cryptocurrency & Blockchain Economics Finance Finance Cert & Exam Prep Financial Modeling & Analysis Investing & Trading Money Management Tools Taxes Other Finance & Accounting
IT & Software
IT Certification Network & Security Hardware Operating Systems Other IT & Software
Office Productivity
Microsoft Apple Google SAP Oracle Other Office Productivity
Personal Development
Personal Transformation Personal Productivity Leadership Career Development Parenting & Relationships Happiness Esoteric Practices Religion & Spirituality Personal Brand Building Creativity Influence Self Esteem & Confidence Stress Management Memory & Study Skills Motivation Other Personal Development
Design
Web Design Graphic Design & Illustration Design Tools User Experience Design Game Design Design Thinking 3D & Animation Fashion Design Architectural Design Interior Design Other Design
Marketing
Digital Marketing Search Engine Optimization Social Media Marketing Branding Marketing Fundamentals Marketing Analytics & Automation Public Relations Advertising Video & Mobile Marketing Content Marketing Growth Hacking Affiliate Marketing Product Marketing Other Marketing
Lifestyle
Arts & Crafts Beauty & Makeup Esoteric Practices Food & Beverage Gaming Home Improvement Pet Care & Training Travel Other Lifestyle
Photography & Video
Digital Photography Photography Portrait Photography Photography Tools Commercial Photography Video Design Other Photography & Video
Health & Fitness
Fitness General Health Sports Nutrition Yoga Mental Health Dieting Self Defense Safety & First Aid Dance Meditation Other Health & Fitness
Music
Instruments Music Production Music Fundamentals Vocal Music Techniques Music Software Other Music
Teaching & Academics
Engineering Humanities Math Science Online Education Social Science Language Teacher Training Test Prep Other Teaching & Academics
AWS Certification Microsoft Certification AWS Certified Solutions Architect - Associate AWS Certified Cloud Practitioner CompTIA A+ Cisco CCNA Amazon AWS CompTIA Security+ AWS Certified Developer - Associate
Graphic Design Photoshop Adobe Illustrator Drawing Digital Painting InDesign Character Design Canva Figure Drawing
Life Coach Training Neuro-Linguistic Programming Personal Development Mindfulness Meditation Personal Transformation Life Purpose Emotional Intelligence Neuroscience
Web Development JavaScript React CSS Angular PHP WordPress Node.Js Python
Google Flutter Android Development iOS Development Swift React Native Dart Programming Language Mobile Development Kotlin SwiftUI
Digital Marketing Google Ads (Adwords) Social Media Marketing Google Ads (AdWords) Certification Marketing Strategy Internet Marketing YouTube Marketing Email Marketing Retargeting
SQL Microsoft Power BI Tableau Business Analysis Business Intelligence MySQL Data Analysis Data Modeling Big Data
Business Fundamentals Entrepreneurship Fundamentals Business Strategy Online Business Business Plan Startup Blogging Freelancing Home Business
Unity Game Development Fundamentals Unreal Engine C# 3D Game Development C++ 2D Game Development Unreal Engine Blueprints Blender
30-Day Money-Back Guarantee
Development Web Development React

React For The Rest Of Us

Learn React JS to create Single Page Applications (SPA) using modern practices like Context, Reducer, Suspense and more
Rating: 4.8 out of 54.8 (1,191 ratings)
6,314 students
Created by Brad Schiff
Last updated 1/2021
English
English [Auto]
30-Day Money-Back Guarantee

What you'll learn

  • The problem React solves and *why* we should use it (aside from "because it's popular")
  • How to create Single Page Applications with React
  • The ability to keep your code organized and manageable
  • How to seamlessly pull real and dynamic data into your front-end
Curated for the Udemy for Business collection

Course content

14 sections • 82 lectures • 15h 50m total length

  • Preview15:14
  • Let's Start Using React
    18:11
  • What Is JSX?
    08:23
  • Staying Organized: Components Using Other Components
    06:21
  • Using Props To Make a Component Flexible
    07:43
  • Looping Through An Array Within JSX
    11:41
  • State
    11:43
  • Handling Events (Like a Button Click etc...)
    11:37
  • Working With Forms
    17:40
  • What is UseEffect?
    19:58

  • Text Editor
    14:15
  • Quick VS Code Settings
    00:26
  • Node.js
    04:38
  • Setting Up Our Workflow
    19:31
  • Important Note About NPM Packages and The Zip Files in This Course
    01:23

  • Starting Our Complex App
    18:22
  • Routing (Single Page Application)
    19:44
  • React Developer Tools
    04:30
  • Creating a Visual Studio Code Snippet
    08:06
  • Create a Reusable "Container" Component
    10:34
  • Quick Details & Composition
    12:12

  • Getting a Database Ready
    11:09
  • Solution to Common Database Problem
    00:30
  • Note About a Common Misspelling
    00:23
  • Running The Back-End
    06:03

  • Quick Note About Debugging
    00:53
  • Sending a Request From the Front-End
    12:55
  • Access Form Field Values with React
    07:18
  • Logging In
    11:59
  • Render Different Components Depending on State
    10:36
  • Persisting State (Local Storage)
    10:57
  • Conditional Homepage Content
    12:00
  • Create Post Screen
    17:29
  • View Single Post Screen
    11:16
  • Flash Messages
    14:14

  • Context
    16:42
  • useReducer
    14:17
  • A Powerful Duo: useReducer & Context
    15:52
  • What is Immer?
    08:18
  • useEffect Practice
    15:45

  • Profile Screen
    19:58
  • Load Posts by Author
    17:02
  • Make Single Post Screen Actually Load The Real Content
    12:09
  • Animated Loading Icon
    06:33
  • Cleaning Up After Ourselves (useEffect)
    07:37
  • Markdown in React
    07:31

  • Adding Tooltips on Hover for Actions
    05:56
  • Edit (Update) Post Component
    19:41
  • Edit Post Continued
    18:35
  • Client-Side Form Validation
    17:06
  • Quick Attention To Detail Features
    19:46
  • Delete a Post
    15:21

  • Setting Up Search Overlay
    16:21
  • React Transition Group (CSS Transition)
    13:15
  • Waiting for User To Stop Typing
    16:14
  • Finishing Search (Part 1)
    13:23
  • Finishing Search (Part 2)
    11:43

  • Follow User Feature
    19:59
  • Profile Followers and Following Tabs
    17:02
  • Homepage Post Feed
    19:23

Requirements

  • A basic understanding of HTML (e.g. "p" is for paragraph, "h1" is for headline, etc...)
  • You could likely work through this course even without any JavaScript experience given the reasonable pace of lessons, but at least a tiny bit of JavaScript familiarity is recommended and will result in a much more enjoyable experience
  • No CSS knowledge required (although it helps to understand that CSS is used to add style & design to a page)

Description

Learn the world's most popular library for creating user interfaces!

What makes this course different is we take the time to understand *why* we're doing what we're doing. We begin by asking an important question that so many other React courses skip entirely; What problem does React solve?

Once we understand what React is and isn't, we spend the remainder of the course together building the front-end for a real world social media app where you can post, follow other users and even hop into a live chatroom. Along the way we will:

  • Understand what "state" is in React and how to bring our interfaces to life

  • Use the modern "hook" approach with Function Components

  • Leverage React Router to create a Single Page Application with shareable URLs

  • See the power of Context, Reducer, and Immer and create an ideal way of working with state

  • Run code at the perfect moments by understanding the power of useEffect()

  • Use async HTTP requests to communicate with APIs so that our app feels meaningful by working with real data

  • Deploy our app up onto the web so you can share it with your friends and family

This course may be brand new, but this isn’t my first time teaching. I’ve led training sessions for Fortune 500 companies and I’ve already helped over 98,000 people on Udemy and received the following feedback:

"Brad definitely has some of the best techniques to embed the lesson into your mind… hands down these are the best tutorials I have had the opportunity to view."

"Presentation is concise without being tedious… you honestly feel that you have a thorough understanding of the subject."

"…[Brad] explained the process. Not memorize this or that, he explained the process. If you're looking to take a course to understand the foundations of creating websites, look no further."

Become highly valuable and relevant to the companies that are hiring front-end developers; in one convenient place alongside one instructor. If you're ready to begin building with React - I'll see you on the inside!

Who this course is for:

  • Anyone who wants to create user interfaces using the most popular and in-demand library in the world today.

Featured review

philosophiae apertissimis
philosophiae apertissimis
42 courses
12 reviews
Rating: 5.0 out of 510 months ago
Love you Brad! I was waiting for this course from you. Just got notification about the course and I'm in without looking around because in my opinion, you're one of the greatest teacher here on Udemy.

Instructor

Brad Schiff
Web Developer
Brad Schiff
  • 4.7 Instructor Rating
  • 44,597 Reviews
  • 146,897 Students
  • 6 Courses

Hi, I'm Brad and I’ve taught web development to countless coworkers and held training sessions for fortune 100 companies.

I also teach local night classes and run a somewhat popular YouTube channel named LearnWebCode.

I’m a front-end developer, designer, and educator. I’ve been building user interfaces for over a decade for the world's largest brands, international technology leaders, and national political campaigns.

I'm fortunate to enjoy the development work I do, but my true passion is helping people learn.

  • Udemy for Business
  • Teach on Udemy
  • Get the app
  • About us
  • Contact us
  • Careers
  • Blog
  • Help and Support
  • Affiliate
  • Terms
  • Privacy policy
  • Cookie settings
  • Sitemap
  • Featured courses
Udemy
© 2021 Udemy, Inc.