React Foundation Launches, Cloudflare Rebuilds Next.js with AI, and Dictionary Compression Changes the Web
Published on 25.02.2026
The React Foundation: A New Home for React Under the Linux Foundation
TLDR: React, React Native, and JSX are no longer owned by Meta. The React Foundation has officially launched under the Linux Foundation with eight platinum founding members including Amazon, Microsoft, Vercel, and Meta itself.
The React Foundation: A New Home for React
Cloudflare Rebuilds Next.js with AI in One Week: Introducing vinext
TLDR: One Cloudflare engineer directed AI to build vinext, a drop-in Next.js replacement built on Vite, in under a week for about $1,100 in tokens. It builds up to 4.4x faster and produces bundles 57% smaller than Next.js 16.
How we rebuilt Next.js with AI in one week
Tests Are The New Moat
TLDR: Daniel Saewitz argues that in the AI era, comprehensive test suites and well-documented APIs, once hallmarks of quality open source, now make it trivially easy for competitors to clone your work. Tests have become the new competitive moat.
Building Design Components with Action Props Using Async React
TLDR: Aurora Scharff demonstrates how to build reusable UI components (TabList, EditableText) that internalize async coordination using useTransition and useOptimistic, so consumers just pass a value and an action prop.
Building Design Components with Action Props using Async React
Creating Query Abstractions with TanStack Query
TLDR: TkDodo explains why custom hooks are the wrong abstraction for TanStack Query configurations, and why queryOptions combined with simple object spreading is the correct, type-safe, composable approach.
How I Used Cursor to Migrate Frameworks
TLDR: Kent C. Dodds migrated his 42,000-line, 330,000-word website from Remix v2 to React Router v7, along with dozens of other dependency upgrades, using Cursor's AI agents with background processing and overnight runs.
How I used Cursor to Migrate Frameworks
React Router Loaders and Actions as Integration Points
TLDR: Sergio Xalambri argues that React Router loaders and actions should be treated as integration points, not units to test in isolation. Test your business logic separately and use E2E tests for the full flow.
React Router Loaders and Actions as Integration Points
Removing Next.js Taught Me Why Frameworks Are Still Essential Even for AI
TLDR: A developer stripped Next.js from a project and rewrote it in plain HTML/JS with AI assistance, only to discover that framework conventions serve as critical "instructions for AI" that prevent code organization drift.
Removing Next.js Taught Me Why Frameworks Are Still Essential Even for AI
React's useTransition: The Hook You're Probably Using Wrong
TLDR: useTransition causes two renders (one immediate with isPending=true, one deferred), is designed for CPU-bound work not network requests, and should never wrap the input state itself, only the expensive derived state.
React's useTransition: The hook you're probably using wrong
Next.js Guides: AI Coding Agents
TLDR: Next.js now ships version-matched documentation inside the next package at node_modules/next/dist/docs/, and generates AGENTS.md and CLAUDE.md files to direct AI coding agents to accurate, up-to-date API references.
Dictionary Compression Is Finally Here, and It's Ridiculously Good
TLDR: Dictionary compression with Zstandard and Brotli is now shipping in Chrome and Node.js, enabling up to 90% reduction in JavaScript bundle transfer sizes for returning users by using previous responses as compression dictionaries.
Dictionary Compression is finally here, and it's ridiculously good
Oxfmt Beta: Prettier-Compatible Formatter at 30x Speed
TLDR: Oxfmt, the Rust-powered code formatter from the OXC project, has reached beta with 100% Prettier JavaScript/TypeScript conformance, 30x faster performance, and support for 20+ file formats including built-in Tailwind CSS class sorting.
CSS border-shape: The Future of Non-Rectangular Web Elements
TLDR: A new CSS property, border-shape, redefines the geometry of an element's border box so that backgrounds, borders, outlines, and box shadows all follow custom shapes. Currently testable in Chrome Canary 146+.
border-shape: the future of the non-rectangular web
Sprites on the Web: A CSS-Only Animation Technique
TLDR: Josh Comeau explains how to implement sprite-based animations using CSS object-fit, object-position, and the steps() timing function, showing when sprites are the right choice over procedural animations.
React Native Comes to Meta Quest
TLDR: React Native now officially supports Meta Quest VR devices, running on Meta Horizon OS (an Android-based OS) with Expo Go available on the Meta Horizon Store for rapid development iteration.