A Reason React Tutorial for Beginners [2018]
A beginner's tutorial for building a GitHub Search app using ReasonReact, covering state management and API calls.
A beginner's tutorial for building a GitHub Search app using ReasonReact, covering state management and API calls.
Explores the future of React render props with the rise of Hooks, comparing implementations and arguing both have a place.
A deep dive into why JavaScript and React class components require calling super(props) in the constructor.
Explains JSX as syntactic sugar for JavaScript function calls, not a templating language, and its benefits for frameworks like React and Vue.
A beginner's guide to building a React application with Firebase for authentication and a realtime database.
A guide on using TypeScript with React Hooks, including a new chapter on typings and type safety considerations.
Announcement of the free book 'The Road to GraphQL' for mastering GraphQL with JavaScript, React, and Node.js through practical applications.
A software engineer reflects on his startup journey and open-source work before joining Google to focus on developer productivity tools.
A guide to implementing visual regression testing for React applications using React Storybook and its Storyshots add-on.
A tutorial on using RxJS for state management in React applications, focusing on handling real-time data and asynchronous operations.
Explains how to fix the React warning about calling setState on an unmounted component to prevent memory leaks and performance issues.
A tutorial on writing tests for Apollo Client queries and mutations in a React application using a mocked GraphQL server.
A guide on setting up and using CSS Modules for styling components in a create-react-app project without extra configuration.
A guide on adding and using Sass for styling in a create-react-app project, including setup and component examples.
A tutorial on managing global state in React using built-in features like props and state lifting, avoiding Redux for simpler applications.
A tutorial on setting React state without constructors using class fields and alternative patterns like HOCs and render props.
Explains migrating PayPal's server-side templates to React/JSX for unified frontend/backend templating, covering challenges and solutions.
Learn to prevent unnecessary React component rerenders using shouldComponentUpdate and PureComponent for performance optimization.
A tutorial on using the Intersection Observer API in React to implement anchor-based navigation for long articles.
Explains the software design principle 'Make impossible states impossible' to improve UI component APIs and state management.