Creating an AI Chat Experience with React and OpenAI
If you’d rather create your own streaming chat UI for OpenAI’s models (such as for the new API-only GPT 4.1 models) Robin has some pointers for getting started. - https://www.robinwieruch.de/react-ai-chat/
#react
If you’d rather create your own streaming chat UI for OpenAI’s models (such as for the new API-only GPT 4.1 models) Robin has some pointers for getting started. - https://www.robinwieruch.de/react-ai-chat/
#react
www.robinwieruch.de
Full-Stack React.js AI Chat with OpenAI API
Build a full-stack AI chat app using React.js on Next.js and the OpenAI API ...
React Compiler Enters Release Candidate Stage
With a plan first unveiled in early 2024, React Compiler has been undergoing a lot of development since and is now here in a ‘stable and near-final’ form, pending a final release in the coming months. The team has also been collaborating with the swc project and experimental swc support is included as part of this release. - https://react.dev/blog/2025/04/21/react-compiler-rc
#react
With a plan first unveiled in early 2024, React Compiler has been undergoing a lot of development since and is now here in a ‘stable and near-final’ form, pending a final release in the coming months. The team has also been collaborating with the swc project and experimental swc support is included as part of this release. - https://react.dev/blog/2025/04/21/react-compiler-rc
#react
react.dev
React Compiler RC – React
The library for web and native user interfaces
Impossible Components
Dan Abramov continues with his series of ‘big picture’ posts with a look at the idea of so-called ‘impossible’ components that mix server-only and client-only features and how React Server Components can help bridge that divide, culminating in an example you can experiment with for yourself. - https://overreacted.io/impossible-components/
#react
Dan Abramov continues with his series of ‘big picture’ posts with a look at the idea of so-called ‘impossible’ components that mix server-only and client-only features and how React Server Components can help bridge that divide, culminating in an example you can experiment with for yourself. - https://overreacted.io/impossible-components/
#react
overreacted.io
Impossible Components — overreacted
Composing across the stack.
How to Use React Server Function Streams in RedwoodSDK - https://rwsdk.com/blog/redwoodsdk-streaming-guide
#react
#react
Rwsdk
How to use React Server Function Streams in RedwoodSDK | RedwoodSDK
RedwoodSDK introduces a powerful feature: React Server Function Streams. This allows developers to stream partial responses from the server to the client, enabling real-time updates and improved user experiences.
Building a Full-Stack AI Chat with Vercel's AI SDK - https://www.robinwieruch.de/react-ai-sdk-chat/
#react
#react
www.robinwieruch.de
Full-Stack React.js Chat with AI SDK
Build a full-stack React.js AI chat application using the AI SDK by Vercel ...
The Mega April React Labs Update
Every once in a while, the React team drops a ‘Labs’ post where they bring us up to speed with some major new features and what the team is working on. Here, we learn about two new features ready to try out today in react@experimental: View Transitions and the <Activity> component. - https://react.dev/blog/2025/04/23/react-labs-view-transitions-activity-and-more
#react
Every once in a while, the React team drops a ‘Labs’ post where they bring us up to speed with some major new features and what the team is working on. Here, we learn about two new features ready to try out today in react@experimental: View Transitions and the <Activity> component. - https://react.dev/blog/2025/04/23/react-labs-view-transitions-activity-and-more
#react
react.dev
React Labs: View Transitions, Activity, and more – React
The library for web and native user interfaces
What Does 'use client' Do?
Dan continues his recent stream of insightful posts with a shorter, more practical look at how to think about the use client and use server directives React Server Components introduced and how they let you elegantly structure a client/server app as “a single program spanning two environments” – a concept that Dan thinks could easily outlive React and be useful elsewhere too. - https://overreacted.io/what-does-use-client-do/
#react
Dan continues his recent stream of insightful posts with a shorter, more practical look at how to think about the use client and use server directives React Server Components introduced and how they let you elegantly structure a client/server app as “a single program spanning two environments” – a concept that Dan thinks could easily outlive React and be useful elsewhere too. - https://overreacted.io/what-does-use-client-do/
#react
overreacted.io
What Does "use client" Do? — overreacted
Two worlds, two doors.
React Server Components for Astro Developers
Astro’s ‘island’ architecture and React Server Components share a strikingly similar mental model. Dan compares the two, digs into some of the quirks, and suggests Astro might be a ‘gentler onramp’ to some of RSC’s ideas if you’re struggling with them. - https://overreacted.io/rsc-for-astro-developers/
#react
Astro’s ‘island’ architecture and React Server Components share a strikingly similar mental model. Dan compares the two, digs into some of the quirks, and suggests Astro might be a ‘gentler onramp’ to some of RSC’s ideas if you’re struggling with them. - https://overreacted.io/rsc-for-astro-developers/
#react
overreacted.io
RSC for Astro Developers — overreacted
Islands, but make it fractal.
Robust Data Fetching Architecture for Complex React/Next.js Apps
“How I use the ‘Three Layers of Data’ architecture pattern for React and Next.js apps to avoid common pitfalls, tech debt, and improve performance.” - https://www.trevorlasn.com/blog/fetching-data-for-complex-next-and-react-apps
#react
“How I use the ‘Three Layers of Data’ architecture pattern for React and Next.js apps to avoid common pitfalls, tech debt, and improve performance.” - https://www.trevorlasn.com/blog/fetching-data-for-complex-next-and-react-apps
#react
Robust Data Fetching Architecture For Complex React/Next.js Apps
How I use the 'Three Layers of Data' architecture pattern for React and Next.js apps to avoid common pitfalls, tech debt, and improve performance
No, React Context is Not Causing Too Many Renders
The author tries to counter a commonly held belief - https://blacksheepcode.com/posts/no_react_context_is_not_causing_too_many_renders
#react
The author tries to counter a commonly held belief - https://blacksheepcode.com/posts/no_react_context_is_not_causing_too_many_renders
#react
Black Sheep Code
No, react context is not causing too many renders
A lot of people are under the impression that context shouldn't be used to store state, because it'll cause the entire application tree to re-render. This is a misnomer.
Concurrent Optimistic Updates in React Query - https://tkdodo.eu/blog/concurrent-optimistic-updates-in-react-query
#react
#react
tkdodo.eu
Concurrent Optimistic Updates in React Query
How to build optimistic UI that is resilient to race conditions, even when multiple mutations update the same entity concurrently.
Dependency Inversion in React: Building Truly Testable Components - https://cekrem.github.io/posts/dependency-inversion-in-react/
#react
#react
cekrem.github.io
Dependency Inversion in React: Building Truly Testable Components
Learn how to apply the Dependency Inversion Principle in React to create more testable, maintainable, and flexible components. A practical guide to writing better React code.
Towards React Server Components in Clojure - https://romanliutikov.com/blog/towards-react-server-components-in-clojure-part-2
#react
#react
Romanliutikov
Towards React Server Components in Clojure, Part 2 | Roman Liutikov, Software Engineer
A journey on bringing React Server Components to Clojure JVM, as a part of UIx library
React, Visualized: A Visual Exploration of React Concepts
The creators of a React course have updated their popular visual explainer of numerous core React concepts to cover React 19 and features like actions, transitions, and Server Components too. There’s a lot to enjoy here, even if you don’t want to take the course. - https://react.gg/visualized
#react
The creators of a React course have updated their popular visual explainer of numerous core React concepts to cover React 19 and features like actions, transitions, and Server Components too. There’s a lot to enjoy here, even if you don’t want to take the course. - https://react.gg/visualized
#react
react.gg
React, visualized – react.gg
React, Visualized – A visual exploration of core React concepts
The Beauty of TanStack Router
Dominik, a new contributor to TanStack Router, calls the project “a work of beauty” and gives an outline of its high-level features here in an attempt to show how it stands out from the alternatives. - https://tkdodo.eu/blog/the-beauty-of-tan-stack-router
#react
Dominik, a new contributor to TanStack Router, calls the project “a work of beauty” and gives an outline of its high-level features here in an attempt to show how it stands out from the alternatives. - https://tkdodo.eu/blog/the-beauty-of-tan-stack-router
#react
tkdodo.eu
The Beauty of TanStack Router
Yes, it's type-safe, but there's so much more to love about TanStack Router.
Building a React App with GitHub Copilot
A good walkthrough, complete with video, if you prefer, of bringing together several of GitHub Copilot’s features for building a modern JavaScript app quickly. - https://github.blog/ai-and-ml/github-copilot/github-for-beginners-building-a-react-app-with-github-copilot/
#react
A good walkthrough, complete with video, if you prefer, of bringing together several of GitHub Copilot’s features for building a modern JavaScript app quickly. - https://github.blog/ai-and-ml/github-copilot/github-for-beginners-building-a-react-app-with-github-copilot/
#react
The GitHub Blog
GitHub for Beginners: Building a React App with GitHub Copilot
Follow along and build a frontend client using React and Copilot Chat.
React's New 'Activity' Component: A Huge Performance Win - https://www.youtube.com/watch?v=gRKVL5w-2Lc
#react
#react
YouTube
React's New Activity Component: Huge Performance Win!
React has a new experiment Activity component that can help speed up your React, NextJS, TanStack, etc. application.
👉 ProNextJS Course: https://pronextjs.dev
👉 Don't forget to subscribe to this channel for more updates: https://bit.ly/2E7drfJ
👉 Discord…
👉 ProNextJS Course: https://pronextjs.dev
👉 Don't forget to subscribe to this channel for more updates: https://bit.ly/2E7drfJ
👉 Discord…
A Simple Way to Add Google Sign-in to a Next.js App - https://tomdekan.com/articles/google-sign-in-nextjs
#react
#react
Tomdekan
The simplest way to add Google sign-in to your Next.js app ✍️ - Tom Dekan
Avoid the ongoing costs of a managed service. It's easier to set up Google sign-in with your own database and BetterAuth.