Ars Mechanica

React

Deep dive into React ecosystem and technologies.

React

Deep dive into React ecosystem and technologies.

004 Entries
Reflections on React Performance Optimization Through Practice
DEV.001

Reflections on React Performance Optimization Through Practice

2025-01-03

reactperformanceoptimization

I performed React performance optimization while going through Hanghae Plus. In the process, I was able to learn how to optimize. As a result of introducing optimization techniques, performance improved in some cases, but it also degraded in others. This is a record of that experience.

Exploring React Developer Tools
DEV.002

Exploring React Developer Tools

2025-01-02

reactperformanceoptimization

To optimize, you need to know how to measure performance. At the same time, you need to understand how rendering works and what processes lead to changes. Let's learn about the developer tools that help with this.

What are React Hooks?
DEV.003

What are React Hooks?

2024-12-30

hooksreact

Understand what React Hooks are and learn what problems React Hooks aim to solve.

The Core of React Component Design Through Composition Pattern
DEV.004

The Core of React Component Design Through Composition Pattern

2024-11-16

designPatternprinciples

As a core concept of composition used in React, I've frequently encountered it and used it daily through function-based React, but it didn't quite resonate with me. While working on a project and implementing several components directly, the meaning of this concept finally clicked. Let me organize the concepts I've understood.