← All posts

Series

The JSX Series

Look at the issue JSX is trying to solve. Understand what's happening under the hood of JSX. See how JSX helps fast re-render in React.

3 posts

  1. Part 1 4 min read

    The JSX Series (Part 1) How we escaped Spaghetti code

    How JSX solved string soup, context switching, and fragile DOM manipulation in modern web development.

  2. Part 2 4 min read

    The JSX Series (Part 2): What Happens Under the Hood When Babel Transpiles JSX?

    Understanding how Babel transpiles HTML-like syntax into React.createElement calls and plain JavaScript UI objects.

  3. Part 3 3 min read

    The JSX Series (Part 3): How JSX Powers Fast Re-renders in React

    How JSX objects fuel Virtual DOM diffing to enable surgical, lightning-fast updates in real web applications.