﻿---
title: 有助于更好的理解 React 的文章 (持续更新)
date: 2099-12-02 07:24:49
---

列举我平时读过的一些文章，帮助更好的理解 React 的一些概念。 (顺序由新到旧)

<!-- more -->

### RSC

- [What Does "use client" Do?](https://overreacted.io/what-does-use-client-do/) 如何对 `use client` 和 `use server` 的理解
- [JSX Over The Wire](https://overreacted.io/jsx-over-the-wire/) 可以理解成为什么 React 要做 RSC，或者说 RSC 走的什么道路
- [React for Two Computers](https://overreacted.io/react-for-two-computers/)  讲故事的方式解释 RSC 是如何实现的但并不是砌代码方式

### Perf & Optimize

- [哔哩哔哩- React性能优化，你需要知道的一切](http://bilibili.com/video/BV1Yr4y1J7oc) 卡颂老师分享的视频。（有上下两集）
- [One simple trick to optimize React re-renders](https://kentcdodds.com/blog/optimize-react-re-renders) 优化重渲染技巧，提升昂贵组件/将昂贵组件作为 props 传递
- [Before You memo()](https://overreacted.io/before-you-memo/) 优化重渲染技巧，和上面这个差不多
- [Fantastic closures and how to find them in React](https://www.developerway.com/posts/fantastic-closures) 了解闭包在 React 中的作用

### State

- [Redux Best Practices](https://redux.js.org/style-guide/)
  