lesson
Dev Teams, Lock Down Environment Versions With VoltaThe newline Guide to Modernizing an Enterprise React AppAvoid one of the most common developer woes: different devs coding with different environment versions with the help of Volta and Node Engines.
lesson
An Introduction To Custom Hooks In ReactThe newline Guide to Modernizing an Enterprise React AppCustom hooks are arguably the most important addition of all the hooks released with React 16.8.0. Explore how custom hooks can dramatically simplify sharing code between components.
lesson
A Step-by-Step Guide to Using React's useContext HookThe newline Guide to Modernizing an Enterprise React AppContext is a powerful API to pass state within React applications, and with the introduction of the useContext Hook, accessing state in any component (class or functional) is possible.
lesson
Learning About The React useRef Hook And Mutable ValuesThe newline Guide to Modernizing an Enterprise React AppWhile less often discussed, the useRef Hook deserves covering because a time will come when it's the right solution to reach for; here, we'll talk about how useRef's "mutable" value property can be useful.
lesson
How Does React's useEffect Hook Work?The newline Guide to Modernizing an Enterprise React AppuseEffect is a game-changing hook: originally compared to lifecycle methods in React components, it's close but not truly a direct comparison.
lesson
React's useState Hook - Track Functional Component StatesThe newline Guide to Modernizing an Enterprise React AppThe useState Hook is the most similar to traditional state in React class-based components, and we'll look at examples of how it works to keep track of state in functional components.
lesson
React Hooks - Understanding The Basic Rules and BenefitsThe newline Guide to Modernizing an Enterprise React AppLearn about the motivation behind React Hooks, the benefits it can bring, and the rules that apply to all Hooks in a React application.
lesson
Video Course Overview - Modernizing an Enterprise React AppThe newline Guide to Modernizing an Enterprise React AppIntroduction to Modernizing an Enterprise React App
lesson
Coding a Comments Section that Requires Manual Content ApprovalThe newline Guide to Full Stack Comments with Hasura and ReactRight now, all the comments are public instantly. However, we may want to review the comments before showing them to other users. This is what we'll cover in this lesson.
lesson
How to Publish a Custom React Hook as an NPM LibraryThe newline Guide to Full Stack Comments with Hasura and ReactThis lesson will teach you how to publish a React hook as an NPM library.
lesson
Adding Pagination to a Comments Section with Hasura and ReactThe newline Guide to Full Stack Comments with Hasura and ReactIn this lesson, we'll add pagination to both the hook and UI.
lesson
An Overview of Optimistic Updates for React HooksThe newline Guide to Full Stack Comments with Hasura and ReactWe'll learn about optimistic updates and add them to our hook's implementation to improve the user experience.