Interested in a private company training? Request it here.
Modern web applications put a lot of focus on the client. But how did we get here? This module explores the history of web development, explains the need for libraries like React, and shows you what exactly React is and what you can do with it.
In this module, we take a look at how a React app is structured, the different ways to create components, and, most importantly, JSX. This syntax extension for JavaScript makes building React components a breeze.
To be able to reuse and split our application into logical parts, we need components. These components are what we'll use to create interactivity in the application. Interactivity however, can only work if we keep track of the state of the application. This chapter explores the data flow of a React application and how React components communicate with each other.
With the Hooks API, we can now add state and other concepts to Functional components. In this module, you'll learn the ins and outs of functional components and the hooks that make them great.
Forms are essential to any app that allows you to manage data. You need to do more than just data binding. You need validation, automatic formatting, response to data changes and so on. React gives you all the tools you need to do this, but there are also some interesting libraries around that can save you a lot of work.
Single Page applications are great! But where do they get their data? In this module, we'll explore how you can access a Back-end from React, and how to implement handy features like caching and lazy loading
As your application becomes more complex, the need for organization and architecture grows. In this module, we'll see some nifty ways to share and reuse state and logic between different components
Instead of hopping from one page to the next, you can design your website as a Single Page Application. This makes your website feel and perform more like an application. SPAs have many advantages but are usually difficult to implement. In this module, we take a look at React Router, the library of choice for client-side routing in React, and the features in React Router that make data loading during navigation simple and intuitive.
Internally, React uses several clever techniques to minimize the amount of work required to update the UI. For many applications, using React will lead to a fast user interface without doing much work to specifically optimize for performance. Nevertheless, there are several ways you can speed up your React application when needed.
As Single Page Applications gain more and more features, they need to handle more and more state. Using a state management pattern can help us keep things neat and tidy.
This chapter will explore Redux. A data flow pattern for enterprise applications.
Because people need to create unit tests when writing code, the React team has created a library that makes it easier. Jest is a unit testing framework based on Jasmine. It allows for a couple of features that are very welcome in the JavaScript unit testing world.
Many javascript frameworks have tried to solve the problem of synchronizing data with a highly interactive UI. The two-way binding approach has sailed well with Angular JS (1.X), Knockout, Backbone, ... But there might be a better way: Facebook has re-envisioned the problem and React was born. React implements a one-way reactive data flow, which is more intuitive and avoids lots of boilerplate code. In this 3-day training developers will learn how to use React and its component based development to create rich and dynamic web applications.
This course targets professional web developers who are familiar with modern JavaScript (ES2015+) and HTML and are looking for ways to improve their productivity with React. The main focus is getting started in the React world with the help of a step by step introduction to the framework.