We may earn an affiliate commission when you visit our partners.
Course image
Academind by Maximilian Schwarzmüller and Maximilian Schwarzmüller

TypeScript is an amazing technology that helps developers write better code with less errors - simply because it let's you catch & fix type-related errors immediately whilst writing the code (instead of when testing the application).

Read more

TypeScript is an amazing technology that helps developers write better code with less errors - simply because it let's you catch & fix type-related errors immediately whilst writing the code (instead of when testing the application).

But using TypeScript with React can sometimes be tricky. Especially when building more complex, dynamic components, defining the right types can be challenging.

That's why I built this course.

This course will teach you how to use TypeScript with React - and, of course, the course will introduce you to all the core concepts & patterns you need to work with components, state, side effects & more in a type-safe way.

This course will:

  • Teach you WHY using TypeScript in your React projects might be a good idea

  • Introduce you to the key TypeScript concepts you'll need - when working with React & in general

  • Get you started with using TypeScript with React - for components, state & more

  • Explore more advanced, complex patterns & examples

  • Help you with building dynamic or even polymorphic components in a type-safe way

  • Teach you how to use TypeScript with React's Context API

  • Explore how you can enhance code used with useReducer() with help of TypeScript

  • Cover data fetching & useEffect() with TypeScript

  • Use the popular Redux library in a type-safe way

  • Build or improve multiple demo projects so that can apply your knowledge

By the end of the course, you'll be able to use TypeScript in your own (future) React projects and write better, more type-safe code.

Course prerequisites:

  • NO prior TypeScript knowledge is required - though basic knowledge will help (but the course includes an introduction module)

  • Basic React knowledge (components, JSX, state) IS required - more advanced concepts will be explained though

Enroll now

12 deals to help you save

We found 12 deals and offers that may be relevant to this course.
Save money when you learn. All coupon codes, vouchers, and discounts are applied automatically unless otherwise noted.
Use code at checkout. Ended October 29
24-Hour Flash Sale
Save on all online courses in your cart and take advantage of big savings.
FLASH SALE
24T6MT102824
Use code at checkout. Ended October 19
24-Hour Flash Sale
Save on all online courses in your cart and take advantage of big savings.
FLASH SALE
ST15MT100124A
Ended October 8
24-Hour Flash Sale
Take advantage of big savings on online courses.
Up to
80%
off
Ended September 28
24-Hour Flash Sale! Save up to 85% on Udemy online courses.
For 24 hours, save big on courses from Udemy's extensive catalog.
Up to
85%
off
Ended September 25
Save on courses
Gain the skills you need to reach your next career milestone.
Up to
85%
off
Use code at checkout. Only 2 days left!
24-Hour Sale
Save with steep discounts on most courses including bestsellers from popular instructors.
Flash Sale!
ST7MT110524
Use code at checkout. Ended October 12
Explore new possibilities
Start exploring new possibilities for your future with courses on sale.
Up to
85%
off
ST14MT101024
Use code at checkout. Valid until November 13
Get skills that impress
Learn from courses across popular topics and take big discounts during this 48-hour sale.
Up to
80%
off
ST20MT111124A
Ended October 1
Personal Plan sale
Gain unlimited access to thousands of courses. For a limited time, save when you start an annual subscription.
From
40%
off
Use code at checkout. Valid until December 1
For new customers
Save when you purchase top courses. For new customers only.
Special Offer
UDEAFNULP2024
Ended November 1
New customer offer
New customers, complete your first order and save big.
Up to
80%
off
Valid for a limited time only
Future-proof your career
Access O'Reilly books, live events, courses, and more. Save with an annual subscription.
Take
15%
off

What's inside

Learning objectives

  • Learn how to build react apps with typescript
  • Get a structured introduction to typescript
  • Use both basic & advanced typescript concepts
  • Build dynamic & highly flexible components with react & typescript
  • Build advanced & highly dynamic components in a type-safe way
  • Use typescript with react's context api & usereducer() hook
  • Manage state and events with react and typescript
  • Use typescript with redux for type-safe global state management

Syllabus

Introduction
Welcome To The Course!
Why React & TypeScript?
About The Course & Course Content
Read more
How To Get The Most Out Of The Course
Learning Community & Course Resources
Creating & Using React + TypeScript Projects
Learn about the core TypeScript concepts & features you'll need for this course and for working with TypeScript in general - with or without React.
Module Introduction
TypeScript Setup & Using TypeScript
Working with Types: Type Inference & Explicit Type Annotations
Basic Primitive Types
Invoking The TypeScript Compiler
Combining Types Union Types (Alternative Types)
Working with Object Types
Working with Array Types
Adding Types to Functions - Parameter & Return Value Types
Defining Function Types
Creating Custom Types / Type Aliases
Defining Object Types with Interfaces
Interfaces vs Custom Types
Merging Types
Being Specific With Literal Types
Adding Type Guards
Type Guards & Type Narrowing - A Closer Look
Making Sense Of Generic Types
Summary
Learn how to use TypeScript with React - how to type components and their props, how to use it with state and how to handle events and user input with TypeScript.
Creating a React + TypeScript Project
Understanding the Role of tsconfig.json
Building a First Component & Facing a Missing Type
Defining Component Props Types
Storing Props Types as a Custom Type or Interface
Defining a Type for Props with "children"
Component Props & The Special "key" Prop
Another Way Of Typing Components
Exercise: Creating a Header Component
Using useState() and TypeScript
Working with State & Outputting State-based Values
Another Exercise & Reusing Types Across Files
Passing Functions as Values - In A Type-Safe Way
Handling & Typing Events
Working with Generic Event Types
Using useRef() with TypeScript
Handling User Input In A Type-Safe Way
Learn how to use TypeScript with more advanced component patterns - for example when building dynamic, highly flexible or polymorphic components.
Building a More Dynamic & Flexible Component
Problem: Flexible Components With Required Prop Combinations
Solution: Building Components with Discriminated Unions
Onwards To A New Project
Building a Basic Wrapper Component
Building Better Wrapper Components with ComponentPropsWithoutRef
Building a Wrapper Component That Renders Different Elements
Working with Type Predicates & Facing TypeScript Limitations
Building a Basic Polymorphic Component
Building a Better Polymorphic Component with Generics
Examples: More Component Ideas
Using forwardRef with TypeScript
Building Another Wrapper Component (Custom Form Component)
Sharing Logic with "unknown" & Type Casting
Exposing Component APIs with useImperativeHandle (with TypeScript)
Alternative: Avoiding Type Casting with "as"
Learn how to use React's Context API & useReducer Hook with TypeScript - how to define type-safe actions and manage cross-application state.
The Starting Project
Creating a Context & Fitting Types
Creating a Type-Safe Provider Component
Accessing Context Type-Safe With A Custom Hook
Getting Started with useReducer() & TypeScript
A Basic Reducer Function & A Basic Action Type
Changing State via the Reducer Function
Using Better Action Types
Wiring Everything Up & Finishing the App
Learn how (and if) TypeScript affects side-effect handle, the usage of useEffect() and how data fetching can be done in a type-safe way.
Creating a First Side Effect
Using useEffect() with TypeScript
Managing An Interval With Refs & The Effect Cleanup Function
useEffect() & Its Dependencies
A Small Bug & Its Solution
Onwards to Data Fetching!
Building a Utility "get" Function with TypeScript
Fetching & Transforming Data
Alternative: Using the "zod" Library for Response Data Validation
Alternative: A Generic "get" Function
Handling Loading & Error States
Learn how to integrate Redux into a React + TypeScript application and how to configure & use type-safe Redux reducers and actions.
Redux Setup
Creating a Redux Store & A First Slice
Setting a State Type
A First Reducer & Controlling the Action Payload Type
Adding Logic To The Reducer
Providing the Redux Store
Dispatching Actions & Adjusting the useDispatch Hook

Good to know

Know what's good
, what to watch for
, and possible dealbreakers
Teaches the fundamentals of TypeScript, which is highly relevant to the React ecosystem
Offers a strong foundation for beginners to learn how to use TypeScript with React
Provides extensive coverage of advanced TypeScript concepts, such as generic types and type guards
Uses a series of hands-on projects to help learners apply their knowledge of TypeScript with React
Instructed by Maximilian Schwarzmüller, who is recognized for his expertise in React and TypeScript
May require learners to have some prior knowledge of TypeScript, which could be a barrier for complete beginners

Save this course

Save React & TypeScript - The Practical Guide to your list so you can find it easily later:
Save

Activities

Be better prepared before your course. Deepen your understanding during and after it. Supplement your coursework and achieve mastery of the topics covered in React & TypeScript - The Practical Guide with these activities:
Review TypeScript Fundamentals
Helps you brush up on TypeScript fundamentals and strengthen your understanding of core concepts.
Show steps
  • Revisit tutorials on TypeScript data types, variables, and operators.
  • Practice writing simple TypeScript functions and classes.
  • Review the TypeScript compiler and its usage.
Show all one activities

Career center

Learners who complete React & TypeScript - The Practical Guide will develop knowledge and skills that may be useful to these careers:
Front-End Engineer
Front-end Engineers design, develop, and maintain the user-facing interfaces of websites and applications. They work closely with back-end engineers to ensure that the user experience is seamless and that the application meets the business requirements. React & TypeScript - The Practical Guide is an excellent course for aspiring Front-end Engineers who want to learn how to use TypeScript to build type-safe React applications. The course covers all the core concepts and patterns you need to work with components, state, side effects, and more in a type-safe way.
TypeScript Developer
TypeScript Developers design, develop, and maintain TypeScript applications. They work closely with other developers to ensure that the application meets the business requirements and that the user experience is seamless. React & TypeScript - The Practical Guide is an excellent course for aspiring TypeScript Developers who want to learn how to use TypeScript to build type-safe React applications. The course covers all the core concepts and patterns you need to work with components, state, side effects, and more in a type-safe way.
React Developer
React Developers design, develop, and maintain React applications. They work closely with other developers to ensure that the application meets the business requirements and that the user experience is seamless. React & TypeScript - The Practical Guide is an excellent course for aspiring React Developers who want to learn how to use TypeScript to build type-safe React applications. The course covers all the core concepts and patterns you need to work with components, state, side effects, and more in a type-safe way.
Web Developer
Web Developers design, develop, and maintain websites and web applications. They work closely with other developers to ensure that the website meets the business requirements and that the user experience is seamless. React & TypeScript - The Practical Guide is an excellent course for aspiring Web Developers who want to learn how to use TypeScript to build type-safe React applications. The course covers all the core concepts and patterns you need to work with components, state, side effects, and more in a type-safe way.
UI Engineer
UI Engineers design, develop, and maintain the user interfaces of websites and applications. They work closely with other engineers to ensure that the user experience is seamless and that the application meets the business requirements. React & TypeScript - The Practical Guide is an excellent course for aspiring UI Engineers who want to learn how to use TypeScript to build type-safe React applications. The course covers all the core concepts and patterns you need to work with components, state, side effects, and more in a type-safe way.
Full Stack Engineer
Full-Stack Engineers design, develop, and maintain both the front-end and back-end of websites and applications. They work closely with other engineers to ensure that the application meets the business requirements and that the user experience is seamless. React & TypeScript - The Practical Guide is an excellent course for aspiring Full-Stack Engineers who want to learn how to use TypeScript to build type-safe React applications. The course covers all the core concepts and patterns you need to work with components, state, side effects, and more in a type-safe way.
UX Engineer
UX Engineers design, develop, and maintain the user experience of websites and applications. They work closely with other engineers to ensure that the user experience is seamless and that the application meets the business requirements. React & TypeScript - The Practical Guide may be useful for UX Engineers who want to learn how to use TypeScript to build type-safe React applications. However, the course focuses on front-end development, so it may not be as relevant for UX Engineers who are primarily interested in UX design.
Software Engineer
Software Engineers design, develop, and maintain software applications. They work closely with other engineers to ensure that the software meets the business requirements and that the user experience is seamless. React & TypeScript - The Practical Guide may be useful for Software Engineers who want to learn how to use TypeScript to build type-safe React applications. However, the course focuses on front-end development, so it may not be as relevant for Software Engineers who are primarily interested in back-end technologies or other areas of software engineering.
Back End Engineer
Back-end Engineers design, develop, and maintain the back-end infrastructure of websites and applications. They work closely with front-end engineers to ensure that the application meets the business requirements and that the user experience is seamless. React & TypeScript - The Practical Guide may be useful for Back-end Engineers who want to learn how to use TypeScript to build type-safe React applications. However, the course focuses on front-end development, so it may not be as relevant for Back-end Engineers who are primarily interested in back-end technologies.
Data Scientist
Data Scientists are responsible for collecting, analyzing, and interpreting data. They work closely with other teams to ensure that the data is used to make informed decisions. React & TypeScript - The Practical Guide may be useful for Data Scientists who want to learn how to use TypeScript to build type-safe React applications. However, the course focuses on front-end development, so it may not be as relevant for Data Scientists who are primarily interested in data science.
Machine Learning Engineer
Machine Learning Engineers are responsible for developing and deploying machine learning models. They work closely with other teams to ensure that the models are used to make informed decisions. React & TypeScript - The Practical Guide may be useful for Machine Learning Engineers who want to learn how to use TypeScript to build type-safe React applications. However, the course focuses on front-end development, so it may not be as relevant for Machine Learning Engineers who are primarily interested in machine learning.
Product Manager
Product Managers are responsible for the product vision and roadmap. They work closely with other teams to ensure that the product meets the needs of the users and the business. React & TypeScript - The Practical Guide may be useful for Product Managers who want to learn how to use TypeScript to build type-safe React applications. However, the course focuses on front-end development, so it may not be as relevant for Product Managers who are primarily interested in product management.
Software Architect
Software Architects are responsible for designing and developing the software architecture of a system. They work closely with other teams to ensure that the system meets the needs of the users and the business. React & TypeScript - The Practical Guide may be useful for Software Architects who want to learn how to use TypeScript to build type-safe React applications. However, the course focuses on front-end development, so it may not be as relevant for Software Architects who are primarily interested in software architecture.
Technical Lead
Technical Leads are responsible for providing technical leadership to a team of engineers. They work closely with other teams to ensure that the project is completed on time, within budget, and to the required quality. React & TypeScript - The Practical Guide may be useful for Technical Leads who want to learn how to use TypeScript to build type-safe React applications. However, the course focuses on front-end development, so it may not be as relevant for Technical Leads who are primarily interested in technical leadership.
Project Manager
Project Managers are responsible for planning, organizing, and executing projects. They work closely with other teams to ensure that the project is completed on time, within budget, and to the required quality. React & TypeScript - The Practical Guide may be useful for Project Managers who want to learn how to use TypeScript to build type-safe React applications. However, the course focuses on front-end development, so it may not be as relevant for Project Managers who are primarily interested in project management.

Reading list

We've selected seven books that we think will supplement your learning. Use these to develop background knowledge, enrich your coursework, and gain a deeper understanding of the topics covered in React & TypeScript - The Practical Guide.
Comprehensive guide to the React framework. It covers everything from the basics of React to advanced topics such as state management and performance optimization. It is an excellent resource for both beginners and experienced React developers.
Offers a comprehensive guide to building modern web applications using React and TypeScript. It provides a good overview of the two technologies and how they can be used together.
Dives deep into best practices for writing TypeScript, and good reference text for more advanced students.
Provides a foundational understanding of the functional programming paradigm and how it can be applied to JavaScript development. It valuable resource for developers who want to learn how to build robust and scalable JavaScript applications.
Collection of design patterns that are commonly used in JavaScript development. It provides a structured approach to solving common problems and implementing best practices.
Collection of design patterns that are commonly used in React development. It provides a structured approach to solving common problems and implementing best practices.

Share

Help others find this course page by sharing it with your friends and followers:

Similar courses

Here are nine courses similar to React & TypeScript - The Practical Guide.
Building React Apps with TypeScript
Most relevant
Typescript in React: useContext, useReducer, Type...
Most relevant
Creating and Using Generics in TypeScript 4
Most relevant
Unit Testing for Typescript & NodeJs Developers with Jest
Most relevant
Typescript: The Complete Developer's Guide
Most relevant
Modern React with Redux [2024 Update]
Most relevant
Typescript in React: Generics, Demystified
Most relevant
Complete React, Next.js & TypeScript Projects Course 2024
Most relevant
Typescript in React: Get started
Most relevant
Our mission

OpenCourser helps millions of learners each year. People visit us to learn workspace skills, ace their exams, and nurture their curiosity.

Our extensive catalog contains over 50,000 courses and twice as many books. Browse by search, by topic, or even by career interests. We'll match you to the right resources quickly.

Find this site helpful? Tell a friend about us.

Affiliate disclosure

We're supported by our community of learners. When you purchase or subscribe to courses and programs or purchase books, we may earn a commission from our partners.

Your purchases help us maintain our catalog and keep our servers humming without ads.

Thank you for supporting OpenCourser.

© 2016 - 2024 OpenCourser