ExtraTorrent.st - The Largest Bittorent System
Latest Articles
Most searched
ExtraTorrent.st > Categories > Other torrents


Browse Other torrents

Intermediate React, v2 [2019, ENG] torrent


Download torrent: Magnet link
Info hash: 16C2BF99969004627AA06AC3EC9FF0F939474389
Category: Categories > Other torrents
Trackers:
http://bt3.t-ru.org/ann?magnet
http://bt1.t-ru.org/ann
http://bt2.t-ru.org/ann
http://bt4.t-ru.org/ann
udp://tracker.opentrackr.org:1337
udp://open.stealth.si:80/announce
udp://tracker.torrent.eu.org:451/announce
udp://exodus.desync.com:6969
udp://open.demonii.com:1337/announce
udp://tracker.coppersurfer.tk:6969
udp://p4p.arenabg.com:1337
udp://tracker.internetwarriors.net:1337
Health:
 seeds: 4, leechers: 0
Torrent language:  
Total Size: 1.39 GB
Number of files:
43   
Uploader:
iamalaska
Torrent added:2019-11-09 09:29:00

Download Intermediate React, v2 [2019, ENG] torrent




Torrent Description
Обучающие видео » Компьютерные видеоуроки и обучающие интерактивные DVD » Программирование (видеоуроки)

Intermediate React, v2

Год выпуска: 2019
Производитель: frontendmasters.com
Сайт производителя: https://frontendmasters.com/courses/intermediate-react-v2/
Автор: Brian Holt
Продолжительность: 3 hours, 51 min
Тип раздаваемого материала: Видеоклипы
Язык: Английский
Описание: Learn to build scalable React applications using the latest tools and techniques available in the React ecosystem! This is a modular course where you can pick and choose the various pieces of the react ecosystem you want to learn. You’ll learn hooks in-depth, CSS-in-JS with emotion, increase performance with code splitting and server-side rendering, add TypeScript, test your app with Jest …and more!

Published: June 11, 2019
Special note Access to courses was provided by one of the rutracker users who wants to stay anonymous let's say all thanks to him, and i just downloaded it
Code Repository https://github.com/btholt/complete-intro-to-react-v5
Course Website https://btholt.github.io/complete-intro-to-react-v5/
[spoiler="Содержание"]
Table of Contents
Introduction
Introduction
00:00:00 - 00:04:43
Introduction
Brian introduces the course, the course website, and how the repository is structured to be modular so that students can watch segments independently of one another. - https://btholt.github.io/complete-intro-to-react-v5/ https://github.com/btholt/complete-intro-to-react-v5
Course Repository Tour
00:04:44 - 00:09:50
Course Repository Tour
Brian clones the repository, gives a brief tour of the repository (including how to take the course offline), and spins up the application that was finished during Introduction to React.
Basic Hooks
useState
00:09:51 - 00:14:19
useState
Brian reviews the useState hook to keep track of state inside a function component. A cardinal rule for using hooks are also covered regarding their use in conditionals or control flow statements. - https://codesandbox.io/s/zr90v4jorp
useEffect
00:14:20 - 00:18:36
useEffect
Brian reviews the useEffect hook to handle side effects in function components. How dependencies affect the functionality of the hook is discussed.
useContext
00:18:37 - 00:21:04
useContext
Brian reviews the useContext hook to pass a context value down through to the context.
Hooks In-Depth
useRef
00:21:05 - 00:24:53
useRef
Brian introduces the useRef hook to do actions such as holding on to DOM elements, timeouts, or intervals. - https://codesandbox.io/s/zr90v4jorp
useReducer
00:24:54 - 00:28:49
useReducer
Brian introduces the useReducer hook that takes a function and an initial state, then returns new state with a dispatch function that dispatches an action to the user. Attention is given to how this, in conjunction with useContext, could replace Redux.
useMemo
00:28:50 - 00:33:21
useMemo
Brian introduces the useMemo hook that only reruns a given function if a given dependency has changed.
useCallback
00:33:22 - 00:38:13
useCallback
Brian introduces the useCallback hook that returns the same function instead of redefining the function each time it's called.
useLayoutEffect
00:38:14 - 00:41:33
useLayoutEffect
Brian introduces the useLayoutEffect hook, which allows the user to read layout from the DOM, and synchronously re-render the page.
useImperativeHandle
00:41:34 - 00:44:12
useImperativeHandle
Brian introduces the useImperativeHandle hook, which allows the child to expose a function to the parent.
CSS in JS
Emotion Setup & Nav Bar
00:44:13 - 00:53:13
Emotion Setup & Nav Bar
Brian introduces the emotionjs library, designed to allow users to insert css in JavaScript, and uses it to create a navigation bar component.
Template Literals & Hooks
00:53:14 - 00:58:43
Template Literals & Hooks
Brian demonstrates how to set a CSS property to a variable in JavaScript, and assign it using a template literal. An example is also given on how to maintain state between user actions using hooks. Attention is given to how using CSS in JS increases maintainability of a codebase.
Design Systems & Compound Selectors
00:58:44 - 01:02:13
Design Systems & Compound Selectors
Brian demonstrates how to centralize a design system, and import it into code. Compound selectors are also demonstrated by implementing a underline on hover state on an element.
Animations
01:02:14 - 01:06:35
Animations
Brian demonstrates how easy it is to add a keyframe into a JavaScript file by making a poodle spin on the page.
Code Splitting
Code Splitting Routes
01:06:36 - 01:14:14
Code Splitting Routes
Brian introduces the concept of code splitting to increase the performance of the application. The lazy and Suspense React modules are inserted into the code, and a component is refactored to be a placeholder component that will not load until the component is rendered for the first time.
Code Splitting Libraries & Child Components
01:14:15 - 01:19:28
Code Splitting Libraries & Child Components
Brian demonstrates how to perform code splitting on a library, and demonstrates that the performance is only affected the first time that a component is loaded. Brian then goes on to demonstrate how to load a modal only if it's used.
Code Splitting Review and Q&A
01:19:29 - 01:21:18
Code Splitting Review and Q&A
Students ask questions about the Suspense module, and using code splitting with Parcel vs Webpack. Brian wraps up the section, and resets the code for the next segment of the course.
Server Side Rendering
SSR Rationale & Initial Setup
01:21:19 - 01:27:26
SSR Rationale & Initial Setup
Brian explains why it's performant to introduce server side rendering to an application. The hydrate function is utilized to take over a page, rather than blow it away, several modules are installed, and the package.json is edited to setup the application to handle Node.js.
Server Side Rendering to Strings
01:27:27 - 01:35:45
Server Side Rendering to Strings
Brian sets up a basic Node.js server that renders the markup on the server, then sends it down to the server as complete markup.
Server Side Rendering to Node Stream
01:35:46 - 01:41:13
Server Side Rendering to Node Stream
Brian introduces an another method that delivers responses in chunks for better performance in large applications.
TypeScript with React
TypeScript Introduction
01:41:14 - 01:46:50
TypeScript Introduction
Brian gives rationale for why TypeScript could be useful for developers, and the TypeScript features that are already built into VS Code, including built-in static type checking, and inline documentation on the fly.
TypeScript Configuration for React
01:46:51 - 01:51:07
TypeScript Configuration for React
Brian initialized the application as a typescript project, installs TypeScript, then installs the type definitions necessary to convert the application to TypeScript.
Typing the Modal Component
01:51:08 - 01:55:25
Typing the Modal Component
Brian converts the first component to TypeScript.
Migrating to TSLint
01:55:26 - 02:01:36
Migrating to TSLint
Brian rips ESLint out of the application, and installs the relevant TSLint packages. The TSLint configuration file is also created, and several helpful rules are implemented that aren't absolutely necessary, but make developing much easier, as well as rules that allow TSLint to work with hooks.
Typing Context
02:01:37 - 02:03:43
Typing Context
Brian gives a type to the React Context API, and demonstrates how to tell TS that there is a strict ordering of string and function to make other files easier to type.
Typing a Class Component
02:03:44 - 02:14:36
Typing a Class Component
Brian demonstrates how to see type definitions within VS Code, briefly calls out private versus public types, and discusses typing public class properties as well as how to type arrays.
Typing an Error Boundary
02:14:37 - 02:17:37
Typing an Error Boundary
Brian demonstrates how to type an error boundary, and imports ErrorInfo.
Props & State Interfaces
02:17:38 - 02:25:31
Props & State Interfaces
Brian implements interfaces into components to handle props and state, and types a FunctionComponent.
Heterogenous Arrays & Hooks
02:25:32 - 02:35:25
Heterogenous Arrays & Hooks
Brian types several more components, and demonstrates how to type heterogeneous arrays, and hooks while typing the remaining components.
TypeScript Review and Q&A
02:35:26 - 02:41:10
TypeScript Review and Q&A
Brian wraps up converting the application to TypeScript, and runs the finished application. A question is asked about whether it's appropriate to separate interfaces to another file, and a typecheck script is introduced in the package.json to ensure that the code compiles correctly, even if the user isn't using Visual Studio Code. Brian leaves the audience with thoughts about the tradeoff between the struggle of fighting the compiler and maintaining a project over the long-term
Redux
Redux Introduction
02:41:11 - 02:47:04
Redux Introduction
Brian begins introducing Redux with a disclaimer on why the Redux section of the course is significantly shorter than previous versions of the course, and why it's still being taught in this course. The process that Redux uses is stepped through, and it's explained why it's valuable.
Creating a Store
02:47:05 - 02:50:18
Creating a Store
Brian begins creating a Redux store, which is at its core a reducer.
Creating a Reducer
02:50:19 - 02:58:47
Creating a Reducer
Brian explains best practices for writing reducers, as well as requirements and philosophy behind them. The reducers directory is created with an index.js file, and combineReducers is imported as a convenience root reducer. Two reducers are created, and wired into the root reducer.
Creating Actions
02:58:48 - 03:00:45
Creating Actions
Brian demonstrates how to create an action that takes a reducer and returns an action.
Connecting Redux to the Application
03:00:46 - 03:09:36
Connecting Redux to the Application
Brian is able to delete a lot of code by introducing the Provider, which makes the store available anywhere in the app, and connect, which allows developers to select things out of state and put them in props as if they were in normal state. The mapDispatchToProps and mapDispatchToState are also tools introduced in this section.
Redux Devtools
03:09:37 - 03:13:43
Redux Devtools
Brian introduces some of the features provided by the developer tools, including the ability to walk through state, and built-in unit test integration.
Completing the Redux Wiring
03:13:44 - 03:17:54
Completing the Redux Wiring
Brian completes the last portion of the application with Redux.
Testing React
Jest & React Testing Library
03:17:55 - 03:21:20
Jest & React Testing Library
Brian introduces naming conventions on the test folder for jest, and installs the react testing library and jest packages into the application.
API Mocks
03:21:21 - 03:31:47
API Mocks
Brian constructs an API mock that prevents the API from being affects extensively during testing, and also to make "API requests" in Node.js
Component Tests
03:31:48 - 03:45:31
Component Tests
Brian writes several tests for the search parameters component using the mock API that test the functionality of the component, and discusses the challenge of async await in React tests.
Snapshots, Watch Mode & Test Coverage
03:45:32 - 03:52:09
Snapshots, Watch Mode & Test Coverage
Brian explains what a snapshot is, creates a test that checks that the data returned matches the snapshot. How to update a snapshot when an intentional change is created, and watch mode is introduced, that allows for an interactive mode that allows for changes to tests on the fly. Istanbul is utilized within Jest as a test coverage tool to demonstrate how much of a codebase is covered by tests.
FrontendMasters
[/spoiler]
Файлы примеров: присутствуют
Формат видео: MP4
Видео: 1920x1080, 16:9, 23.98 fps, avg 1200 kb/s
Аудио: AAC, 48kHz, 127, stereo
[spoiler="Скриншоты"]

[/spoiler]

Download Intermediate React, v2 [2019, ENG] torrent


Related Torrents

Added  Size  Health
Download Magnet link   React: Intermediate Topics in Other , by
tutsnode
3y 1.40 GB 3 0
Download Magnet link   Intermediate React, v5 in Other , by
tutsnode
3y 1.30 GB 0 0
Download Magnet link   Frontend Master - Intermediate React, v5 in Other , by
freecoursewb
3y 1.30 GB 4 1
Download Magnet link   Skillshare - React JS With Redux Saga - From Beginner To Intermediate in Other , by
freecoursewb
4y 583.90 MB 0 0
Download Magnet link   Udemy - Intermediate React skills - Build a professional login page in Other , by
freecoursewb
4y 2.60 GB 4 6




Home - Browse Torrents
ExtraTorrent.st is in compliance with copyrights
2025 ExtraTorrent.st