Torrent Info
Title purereact.com - Pure React Learn to think in React
Category
Size 23.47GB
Files List
Please note that this page does not hosts or makes available any of the listed filenames. You cannot download any of those files from here.
100 Swizec Teller on keeping up with front end tech and whats coming next.mp4 915.43MB
100 Swizec Teller on keeping up with front end tech and whats coming next.vtt 915.43MB
101 Js Fundamentals .mp4 735.85MB
101 Js Fundamentals .vtt 735.85MB
102 More JS Fundamentals .mp4 563.32MB
102 More JS Fundamentals .vtt 563.32MB
103 Intro to React .mp4 996.08MB
103 Intro to React .vtt 996.08MB
104 More React Fundamentals .mp4 390.43MB
104 More React Fundamentals .vtt 390.43MB
105 Learn React State .mp4 737.43MB
105 Learn React State .vtt 737.43MB
106 Intro To React Hooks .mp4 671.97MB
106 Intro To React Hooks .vtt 671.97MB
107 Use Hooks for API requests .mp4 778.30MB
107 Use Hooks for API requests .vtt 778.30MB
108 React Context .mp4 683.19MB
108 React Context .vtt 683.19MB
10 Remove Array Items with Slice and Splice.mp4 6.52MB
11 Add Items to an Array with Concat and the Spread Operator.mp4 2.64MB
12 Modify Elements in an Array with Map.mp4 6.11MB
13 Remove Elements from an Array with Filter.mp4 3.75MB
14 Use the Reduce Function on Arrays.mp4 21.35MB
15 Use Import and Export On JS Files and Modules.mp4 13.62MB
16 Understand how Babel Transforms Modern JS into Older JS.mp4 4.74MB
17 Write Your First React App Hello World.mp4 20.00MB
18 How JSX Compiles to Plain JavaScript.mp4 15.01MB
19 Differences Between JSX and HTML.mp4 8.03MB
1 Write Concise Functions with ES6 Arrows and Implicit Returns.mp4 6.72MB
20 Sketch Before Building a Tweet Component.mp4 1.74MB
21 Build a Tweet Component with Hardcoded Data.mp4 12.48MB
22 Make Components Dynamic with Props.mp4 24.50MB
23 Split up a React App into Component Files.mp4 22.16MB
24 Sketch Before Building the GitHub File List.mp4 1.59MB
25 Build the GitHub File List app.mp4 26.61MB
26 Use React Children to render dynamic content.mp4 6.19MB
27 The Slots Pattern for Passing Multiple Children to a Component.mp4 11.24MB
28 Validate data with PropTypes.mp4 18.92MB
29 Deploy an app to Surge and Nowsh.mp4 11.41MB
2 Understand How this Works in Regular Functions and Arrow Functions.mp4 3.94MB
30 Use React State to Make Components Interactive.mp4 11.95MB
31 Run Code After setState with a Callback.mp4 8.92MB
32 Write a React Component Without the Constructor.mp4 3.18MB
33 setState Uses Shallow Merge to Update State.mp4 14.54MB
34 The Consequences of Mutating State.mp4 14.28MB
35 Store the Value of Form Input in State.mp4 4.83MB
36 Use a Ref to Refer to an Uncontrolled Input.mp4 4.27MB
37 Sketch Before Building Shopper App.mp4 2.22MB
38 Build the Shoppers Item Page.mp4 8.50MB
39 Add Items to the Cart.mp4 12.57MB
3 Use let and const for BlockScoped Variables.mp4 9.98MB
40 Build the Shoppers Cart Page.mp4 9.78MB
41 Display Cart Items and a Total.mp4 23.78MB
42 Build a Checkout Form.mp4 34.14MB
43 Phases of the Component Lifecycle.mp4 4.10MB
44 Mounting Updating and Unmounting.mp4 5.84MB
45 Optimize a React Component with shouldComponentUpdate.mp4 14.55MB
46 Automatically Scroll a Chat Box with getSnapshotBeforeUpdate.mp4 10.13MB
47 Update State Based On Props with getDerivedStateFromProps.mp4 7.32MB
48 Use Error Boundaries to Catch and Recover from Errors.mp4 17.08MB
49 Use the useState Hook to Add State to a Function Component.mp4 4.94MB
4 Understand the Difference Between Statements and Expressions.mp4 4.92MB
50 The Magic Behind How Hooks Work.mp4 7.52MB
51 Call useState Multiple Times in One Component.mp4 4.78MB
52 Store an Object in useState and Update It Immutably.mp4 11.61MB
53 Extract Related Hooks Code into a Custom Hook.mp4 10.57MB
54 Access a DOM Node Directly with the useRef Hook.mp4 9.47MB
55 Manage Simple State with the useReducer Hook.mp4 11.47MB
56 Implement undoredo with the useReducer Hook.mp4 32.68MB
57 Synchronize State with Side Effects with the useEffect Hook.mp4 10.71MB
58 Manage Input Focus with useEffect.mp4 19.07MB
59 Return a Function From useEffect to Clean Up a Previous Effect.mp4 8.81MB
5 Use ES6 Template Strings to Interpolate Values.mp4 3.69MB
60 How to useLayoutEffect instead of useEffect.mp4 10.59MB
61 Refactor a React Class to Use Hooks.mp4 7.54MB
62 Refactor Lifecycles with Closures to Use Hooks.mp4 38.76MB
63 Cache Values with the useMemo Hook.mp4 9.76MB
64 Initialize useState with a Function.mp4 4.57MB
65 Cache Callback Functions with the useCallback Hook.mp4 12.10MB
66 Basics of REST and HTTP.mp4 8.06MB
67 Finished Product First the Pet Store App Well Be Building.mp4 2.05MB
68 Set up a REST Server with jsonserver.mp4 7.31MB
69 Fetch a List of Data with useEffect and Promises.mp4 7.64MB
6 Use the Rest and Spread Operators on Arrays and Objects.mp4 7.68MB
70 Fetch a List of Data with useEffect and asyncawait.mp4 7.30MB
71 Display a Loading Indicator.mp4 10.50MB
72 Display a Modal Dialog Using reactmodal.mp4 9.21MB
73 Create a New Pet Form.mp4 24.77MB
74 Use a File Input to Upload an Image.mp4 11.12MB
75 Implement Saving Pet Data Locally.mp4 12.21MB
76 Use HTTP POST to Save the Pet to the Server.mp4 35.16MB
77 Use HTTP PUT to Update the Pet on the Server.mp4 42.17MB
78 Refactor New and Edit Forms into One.mp4 20.11MB
79 Use HTTP DELETE to Remove a Pet from the Server.mp4 9.24MB
7 Use Destructuring to Pick Apart Arrays and Objects.mp4 11.25MB
80 Reverseengineer an API and Display Data with React.mp4 13.23MB
81 Finished Product First the App Were Building.mp4 10.82MB
82 Avoid prop drilling with React Context.mp4 22.47MB
83 Allow Children to Update Parents with a callback from Context in React.mp4 14.32MB
84 Manage the Loggedin User State with Context.mp4 7.91MB
85 Create a Context Wrapper With a Custom Hook.mp4 18.21MB
86 Use Multiple Context Providers in the same app.mp4 24.80MB
87 Manage Context State with the useReducer Hook.mp4 24.33MB
88 Use the useEffect Hook to Periodically Fetch Data.mp4 12.53MB
89 Use React Context to display notifications.mp4 27.27MB
8 Understand Mutable vs Immutable Operations in JavaScript.mp4 15.78MB
90 Periodically Clean Up Notifications with useEffect and setInterval.mp4 9.97MB
91 Create a Wrapper to Contain the Providers.mp4 8.20MB
92 Performantly render a large list of items with React Context.mp4 51.54MB
93 Use a Context Outside of its Matching Provider.mp4 6.95MB
94 Ali Spittel on teaching yourself teaching others and getting yourself unstuck.mp4 615.61MB
94 Ali Spittel on teaching yourself teaching others and getting yourself unstuck.vtt 615.61MB
95 Emma Wedekind on landing a dev job in a foreign country no less.mp4 819.26MB
95 Emma Wedekind on landing a dev job in a foreign country no less.vtt 819.26MB
96 Kent C Dodds on strategies for testing your apps.mp4 774.67MB
96 Kent C Dodds on strategies for testing your apps.vtt 774.67MB
97 Shawn swyx Wang on marketing yourself as a developer.mp4 1001.69MB
97 Shawn swyx Wang on marketing yourself as a developer.vtt 1001.69MB
98 Eve Porcello and Alex Banks on getting started with GraphQL.mp4 611.35MB
98 Eve Porcello and Alex Banks on getting started with GraphQL.vtt 611.35MB
99 Mark Erikson on Redux the Context API and which to choose.mp4 1.10GB
99 Mark Erikson on Redux the Context API and which to choose.vtt 1.10GB
9 Find Elements in JavaScript Arrays with find and findIndex.mp4 3.87MB
Distribution statistics by country
Russia (RU) 3
Republic of Korea (KR) 1
Total 4
IP List List of IP addresses which were distributed this torrent