My Learning Curve

Feed

Developer Way

Latest entries from Developer Way.

Source: https://www.developerway.com

SSR Deep Dive for React Developers

Mar 17, 2025

Explore step-by-step how Server-Side Rendering (SSR), pre-rendering, hydration, and Static Site Generation (SSG) work in React, their costs, performance impact, benefits, and trade...

Client-Side Rendering in Flame Graphs

Feb 18, 2025

Intro to Performance Flame Graphs. Learn how to read and extract useful info from performance flame graphs while exploring how the Client-Side rendering works in React applications...

How to handle errors in React: full guide

Feb 14, 2023

Looking into how to catch and handle errors in React: usages, patterns and caveats of try/catch and ErrorBoundary, what's possible, what's not, and how to catch async errors with E...

How it's made: the blog's story and the future

Sep 20, 2022

Sneak peek behind the scenes. How the blog has started, how I come up with the ideas, how the blog is promoted, the money question: present and future. And the secret of the cats o...

React re-renders guide: everything, all at once

Aug 2, 2022

React re-renders "cheatsheet". Short descriptions with visual aid and code examples of: what re-renders are, what triggers them, most important re-renders related patterns and anti...

How to write performant React apps with Context

Feb 7, 2022

De-mystifying Context and its influence on React apps' performance. Learning a few useful patterns in the process, that could help minimize the re-renders impact and improve code's...

Advanced typescript for React developers

Dec 8, 2021

Diving into advanced typescript concepts and understanding how and why we need things like type guards, keyof, typeof, is, as const and indexed types.

Typescript generics for React developers

Nov 25, 2021

Looking into why we need generics in Typescript, and how to use them to develop re-usable React components. And as a bonus: the secret of React hooks 😉