React JumpStart | Fast Track to React for Skilled Web Developers

Fast Paced React Foundation Course for Experienced Web Developers | React, Redux, Routers, Hooks, Composition & More

TT4192

Intermediate

3 Days

Course Overview

The React web development framework has truly changed the way of developing Web applications, and when combined with Redux, provides a powerful web frontend architecture for developers of all skill levels.  In addition to enabling developers to build modern, feature-rich applications for their users, React pushes web developers to continually extend and improve their development skills, since React doesn’t come with a templating system. Instead, React pushes developers to use the full power of JavaScript to build their user interface.

React JumpStart is a 3-day, fast-paced hands-on course that aims to be the single most useful resource on getting up to speed quickly with React.  Geared for experienced web developers, this course provides students with the core knowledge and hands-on skills they require to build reliable, powerful React applications. Throughout the course, students will gain hands-on experience using parts of functional programming with map and filter methods and will also use the latest features of JavaScript (including ES2015). By not abstracting away data management, React will force developers to think about how to architect their applications, and encourage them to consider core concepts like immutability.

After the first few modules, students will have a working knowledge of React’s foundation and will be able to leverage that to build a wide array of rich, interactive web apps with the library. Topics like client-side routing between pages, managing complex state, and heavy API interaction at scale are also discussed.  Core fundamentals are covered with a progressive, example-driven approach. Students will create their first application, learn how to write components, and start handling user interaction.  The course will also explore the inner workings of Create React App (Facebook’s tool for running React apps), writing automated unit tests, and building a multi-page app that uses client-side routing.

The discussion of Redux and Flux, commonly leveraged in large production applications will give the students an understanding of why these tools would be used and how they'd be applied. These concepts explore strategies for data architecture, transport, and management. Redux is a state management paradigm based on Facebook’s Flux architecture. Redux provides a structure for large state trees and allows you to decouple user interaction in your app from state changes.

Course Objectives

Working in a hands-on learning environment led by our expert web development team, students will gain:

  • A solid understanding of React components
  • An in-depth knowledge of how React works
  • An understanding of what Redux is
  • How to use inline styles for perfect looking components
  • A high-level coverage of testing React components using Jest and Enzyme
  • A deep understanding of data-driven modeling with props and state
  • How to use client-side routing for Single Page Application(SPA) pages in your apps
  • How to debug a React application

Need different skills or topics?  If your team requires different topics or tools, additional skills or custom approach, this course may be further adjusted to accommodate.  We offer additional React, web development and design courses which may be blended with this course for a track that best suits your development objectives.

Course Prerequisites

In order to be successful in this class, incoming attendees are required to have current, hands-on experience in developing basic web applications, and be versed in HTML5, CSS3 and JavaScript.  This is an intermediate level web development class, designed for experienced web developers new to React that need to further extend their skills in web development.

Please see the Related Courses tab for specific Pre-Requisite courses, Related Courses that offer similar skills or topics, and next-step Follow-On Courses and Learning Path recommendations.

 

Take Before: Attendees should have experience with the topics in the following courses, or should have recently attended these as a pre-requisite:

  • TT4650 Introduction to HTML5/CSS3 and JavaScript (Six months of web development using HTML and CSS)
  • TT4110 Modern JavaScript Essentials
  • Prior experience with React is not required.
  • A basic knowledge of using NPM packages is beneficial but not required.
  • A basic knowledge WebPack with Babel is also beneficial but not required.

 

Take After: Our core training courses provide students with a solid foundation for continued learning based on role, goals, or their areas of specialty.  Our web developer learning paths offer a wide variety of continued learning paths such as:

  • Additional React, Redux, NodeJS / MEANStack, Angular or other next level web development courses
  • Web security training
  • Please contact us for recommended next steps tailored to your longer-term education, project, role or development objectives.

Course Agenda

Please note that this list of topics is based on our standard course offering, evolved from typical industry uses and trends. We’ll work with you to tune this course and level of coverage to target the skills you need most.

  1. Course Overview

 

  1. React Introduction
  • What is React?
  • Its origins WRT Angular
  • React's 3 design principles
  • Composition of components
  • How is React so darned fast?
  • The virtual DOM
  • One-way data flow
  • How a React app works - a peak under the covers
  • Transpiling, bundling, minifying with webpack
  1. Redux intro
  • It's a library
  • The single responsibility principle
  • Why Redux?
  • Why Redux with React?
  • Its history and growth
  • The 4 concepts of Redux
  • State
  • Pure functions
  • Compoosition
  • Immutability
  • The parts of Redux
  • The big picture of Redux
  1. create-react-app
  • The need for CRA - webpack, npm, babel, JSX, eslint, es2015, jest, etc
  • Using npx
  • The only build dependency needed
  • Watch mode
  • Linting code
  • Ejecting
  • Running unit tests
  1. Stateless Functional Components
  • Why less is more
  • A gentle intro to JSX
  • The 7 rules of JSX
  • When JSX deviates from the W3C standards
  • 3 simple steps to creating a component
  • Hosting a component
  1. Styling React components
  • Styling with CSS
  • Specifying Inline Styles
  • Importing styles
  • Using npm libraries
  • The trick to importing images
  1. Events in React
  • React's synthetic events
  • Why do they need to add events?
  • The quick way to tell the difference
  • The event object is reused!
  • Passing values to the handler
  • Creating your own custom events
  1. Composition with React
  • How to compose
  • Data flowing down - props
  • Why not 2-way binding?
  • Data flowing up by emitting an event
  • Passing data between sibling and cousin components
  • All the ways to communicate and the cleanest solution
  1. React router
  • How to create a SPA in React
  • What React router is and where it came from
  • 4 easy steps to routing
  • How to define the domain of a router
  • How to create routes
  • How to route users via a link
  • How to route users via a url
  • How to route users via JavaScript
  • How to read route parameters
  1. Expressions
  • Demystifying expressions - how to think about them
  • Nesting JSX in expressions and vice-versa
  • Conditional rendering
  • Iterating collections
  • What does key do for me?
  • Calling functions that return JSX
  1. React Hooks
  • The case for Hooks
  • History of Hooks
  • useState() (Multiple vs Single)
  • useEffect()
  • useContext()
  • useReducer()
  • How to enable them
  • Tips and tricks with hooks
  1. Managing state
  • Defining state in React
  • React state != Redux state
  • Stateful components are classes
  • How to initialize state in the constructor and when not to
  • Updating state with this.setState()
  • Asynchronous updates
  • The secrets of upserting state
  • Forms in React
  • Controlled vs. Uncontrolled forms
  • How to solve the update problem
  • Insider tips for state in React
  1. The React Lifecycle (Time permitting)
  • Birth and death of a component
  • constructor
  • getDerivedStateFromProps
  • componentDidMount
  • componentWillUnmount
  • Updating a component
  • shouldComponentUpdate
  • getSnapshotBeforeUpdate
  • componentDidUpdate
  1. PropTypes (Time permitting)
  • Why propTypes?
  • All the types that can be used
  • Using in class-based components
  • Using in functional components
  • How to handle extra props

Course Materials

Student Materials: Each participant will receive a Student Guide with course notes, code samples, software tutorials, step-by-step written lab instructions, diagrams and related reference materials and resource links. Students will also receive the project files (or code, if applicable) and solutions required for the hands-on work. Any courseware of lab materials provided in a cloud (if applicable) will also be made available to you separately.

Hands-On Setup Made Simple! Our dedicated tech team will work with you to ensure our ‘easy-access’ cloud-based course environment, or local installation, is accessible, fully-tested and verified as ready to go well in advance of the course start date, ensuring a smooth start to class and effective learning experience for all participants. We can also help you install this course locally if preferred. Please inquire for details and options.

Raise the bar for advancing technology skills

Attend a Class!

Live scheduled classes are listed below or browse our full course catalog anytime

Special Offers

We regulary offer discounts for individuals, groups and corporate teams. Contact us

Custom Team Training

Check out custom training solutions planned around your unique needs and skills.

EveryCourse Extras

Exclusive materials, ongoing support and a free live course refresh with every class.

Mix, Match & Master!
2FOR1: Two Courses, One Price!

Enroll in *any* two public courses (for 2023 *OR* 2024 dates!) by December 31, for one price!  Learn something new, or share the promo!

Click for Details & Additional Offers

Learn. Explore. Advance!

Extend your training investment! Recorded sessions, free re-sits and after course support included with Every Course
Trivera MiniCamps
Gain the skills you need with less time in the classroom with our short course, live-online hands-on events
Trivera QuickSkills: Free Courses and Webinars
Training on us! Keep your skills current with free live events, courses & webinars
Trivera AfterCourse: Coaching and Support
Expert level after-training support to help organizations put new training skills into practice on the job

The voices of our customers speak volumes

Special Offers
Limited Offer for most courses.

SAVE 50%

Learn More