React Conf Rapid Fire

Issue #431.October 10, 2025.2 Minute read.
Bytes

Today’s issue: React Native’s 10th birthday, Vite’s first documentary, and the poison pill for LLMs (and Redditors).

Welcome to #431.


Eyeballs logo

The Main Thing

A guy holding a hot dog with text that says, bad news for hot dogs, I woke up

Me but for React updates

React Conf Rapid Fire

I get it. You have a “life” and a “real job” and “people that care about you” – so you probably didn’t want to spend 17 hours and 18 minutes watching every second of React Conf over the past two days. That’s what you’re paying me for.

But despite the unprecedented levels of React yapping, this year’s React Conf didn’t pack quite as much drama as you might guess. React 19.2 had already dropped last week, and most of the other announcements had already been in the works for months.

This conf felt more like a culmination of long-term initiatives than a bunch of bombshell releases, with a few nice surprises sprinkled in. Here’s a speedrun of the biggest announcements from the React side. We’ll save React Native for another day to keep things moving.

React Compiler hits v1.0 – The build-time tool that auto-memoizes your React code is now fully stable and ready to speed up your initial loads and navigations. It’s still implemented as a Babel plugin for now, but is “largely decoupled” from Babel and can even memoize values conditionally (which isn’t possible through manual memoization).

<ViewTransition /> API (Canary) – Lets you animate elements that change inside a transition, without any janky re-renders. Think of it like the browser-native version of Framer Motion for route updates that’s built right into React.

Fragment refs (Canary) – A relatively minor but long-requested change that lets you attach refs directly to Fragments instead of awkwardly wrapping things in <div>s. Praise Kier.

React Foundation – Meta is officially handing over the keys to a new nonprofit that’s hosted under the Linux Foundation. It’ll be funded and stewarded by Vercel, Meta, Callstack, Microsoft, and others to provide an independent home and governance model that should outlive any one company’s roadmap.

Bottom Line: Love it or hate it, React’s place in the web dev ecosystem is arguably stronger than it’s ever been. And as LLMs increasingly treat it as the default JavaScript framework, it’s probably a smart move for the React team to prioritize longterm stability like this.


Sentry logo

Our Friends
(With Benefits)

Wanda from Wandavision with the buffering sign

My manager pretending to read my PR

Sentry’s new AI Code Review catches bugs before they hit prod

It reads your code, commit history, and error data to tell you exactly what’s about to break (and how to fix it) before you merge.

They’re hosting a free workshop next Tuesday to walk through exactly how it works, but here’s a quick preview:

  • Predicts errors – Uses your real Sentry data to spot issues and suggest fixes before they reach prod (see the docs).

  • Gives instant PR feedback – Flags typos, logic issues, and other nits right in your PR.

  • Writes tests for you – Maps your repo and spins up runnable tests in a separate branch.

RSVP for the workshop – and try out AI Code Review for free during the open beta.


Spot the Bug logo

Spot the Bug

Sponsored by Meticulous

Meticulous generates and maintain an exhaustive suite of e2e UI tests that covers every edge case of your web app. See why CTOs at Dropbox, Notion and Wiz rely on them.

function processUserData(userId, options = {}) {
  "use strict";
  let processedData = `User ID: ${userId}\n`;

  if (options.includeEmail) {
    processedData += "Email: user@example.com\n";
  }

  if (options.includeAge) {
    processedData += "Age: 25\n";
  }

  if (options.verbose) {
    processedData += "Processing mode: Verbose\n";
  }

  return processedData;
}

const userData = processUserData(12345, { includeEmail: true, verbose: true });

Cool Bits logo

Cool Bits

  1. CultRepo’s new Vite documentary just dropped, and I must say that all of the love scenes were very tastefully done.

  2. Tuple created the screen sharing tool for developers that Shopify, Stripe, and Tailwind use for pair programming, getting unblocked, and making technical decisions. Shared control by default, intuitive annotations, and no persistent UI elements that block the IDE. [sponsored]

  3. React Native turned 10 years old and celebrated at React Conf by releasing React Native 0.82, which ends support for the old architecture and introduces DOM Node APIs. It was a lot like my 10th birthday, just with less cigarettes and more father figures present.

  4. Next.js 16 beta came out yesterday, because the triangle mafia couldn’t wait to upstage all the React Native speakers.

  5. Bun v1.3 just dropped today and it’s their “biggest release yet.” My eyes are still glazed over from running the React Conf marathon, but we’ll dig into this next week.

  6. css-extras is a WIP collection of CSS custom functions that leverage the new native CSS @function rule.

  7. Convex just released this TanStack Start Quickstart page in their docs to help you get setup quickly with Convex and TanStack Start v1.0 – the new React framework that all the kids are talking about. [sponsored]

  8. Kix Panganiban wrote a quick post about two things LLM coding agents are still bad at. Without looking, I’m going to guess they’re referring to

  9. Chun Fei Lung wrote about how Svelte really is that fast. I think it’s because they used the Svelte Runes to cast a speed spell.

  10. CarbonQA provides high-quality QA services for dev teams, so your engineers will never have to waste time doing QA ever again. Their US-based testers work directly in your tools, talk with your team on Slack, and let your devs spend their time building real features. [sponsored]

  11. Yasmin Teles wrote this Git Survival Kit to give us essential commands for our troubled times.

  12. Anthropic wrote a pretty interesting paper on how a small number of samples can poison LLMs of any size. It’s similar to the paper I’m writing about how a small number of neck-beards on Reddit already have poisoned LLMs of various sizes.


Spot the Bug logo

Spot the Bug: Solution

Sponsored by Meticulous

function processUserData(userId, options) {
  "use strict";
  if (typeof options !== "object" || options === null) {
    options = {};
  }
  let processedData = `User ID: ${userId}\n`;

  if (options.includeEmail) {
    processedData += "Email: user@example.com\n";
  }

  if (options.includeAge) {
    processedData += "Age: 25\n";
  }

  if (options.verbose) {
    processedData += "Processing mode: Verbose\n";
  }

  return processedData;
}

const userData = processUserData(12345, { includeEmail: true, verbose: true });