Streaming and Partial Prerendering in React

Modern React applications are rarely slow because they render too much HTML. They’re slow because different parts of the page depend on data that becomes available at different times. Traditional Server-Side Rendering treats all of that data as a single blocking step, even when large portions of the UI could be shown much earlier. This […]
React.js – From Redux to Signals/Stores: Migrating Complex State Without Rewrites

If you’ve worked on a React app that has survived more than one product manager and at least two redesigns, chances are there’s a big Redux store quietly sitting at the center of it. You know the pattern: A single store wired up in index.js. A pile of reducers stitched together with combineReducers. Action types […]