Hi everyone!
This week is difficult to sum up, there's a lot of interesting news and I don't know which to highlight.
We notably have a sneak peek of a new React core hook replacing the confusing useFormState
, that even React Native devs will now be able to use now!
๐ก Subscribe to the official newsletter to receive an email every week!
๐ธ Sponsor
Axiom - the best logging platform for Vercel apps
๐ด Sleep peacefully knowing that Axiomโs zero-config observability for Vercel projects has you covered.
- Use Axiom's pre-built dashboard for an overview across all your Vercel logs and vitals, drill down to specific projects and deployments, and get insight on how functions are performing with a single click.
- next-axiom allows you to send logs and events from any part of your Next.js projects - client, edge, or server-side - without any special configuration.
- Easily send structured logs directly from your code and analyze them together with Vercel logs.
Axiom efficiently captures 100% of your event data so youโll never have to worry about sampling or retention, and youโll never have to guess what your users are experiencing.
PS:ย I use it myself to monitor the newsletter signupsย ๐
โ๏ธ React
React Core PR - New useActionState hook
It turns out the useFormState hook was confusing, and not even meant to be solely used in forms. The React team is addressing this by introducing a new React core hook to replace it:
- Renames
useFormState
touseActionState
- Adds a pending state to the returned tuple
- Moves the hook to the
react
package
Moving it from react-dom
to react
also means that now, other renderers such as React Native can use it too. There are other benefits to look at, such as a โpartial progressive enhancementโ feature, but also new caveats documented in the PR.
- ๐ธ Secure your documents with PDF Redaction. Discover how to protect sensitive information in PDFs using React. Visit our blog to learn more.
- ๐ฆ React 19 != React Compiler: The React Labs post is a bit ambiguous and misled many of us, so letโs clarify. The compiler will likely come after the React 19.0 release as a separate project, and thereโs a good chance it will initially be released as a Babel/TypeScript plugin. The internals are decoupled through, so it shouldnโt take long to adapt it it to Rust.
- ๐ฆ TanStack Start preview: Tanner works on a TanStack Start full-stack framework based on Vinxi and TanStack Router. This preview shows heโs migrating his own TanStack site to it.
- ๐ Vercel - Introducing AI SDK 3.0 with Generative UI support: With the AI SDK 3.0 and thanks to React Server Components, you can now stream UI components directly from LLMs. Super impressive demos!
- ๐ Secure statically rendered paid content in Next.js (with the App Router): Shows that using Next.js layouts for authentication is not super secure, and the protected content can still leak through the RSC endpoint. Suggests using a middleware instead.
- ๐ Internationalization with Remix: Goes back to i18n fundamentals, and then detail various i18n solutions you can set up within Remix. Optional route segments can help you use localized sub-directories.
- ๐ Did you know you can write your own typesafe React router in 500 lines?: A great comprehensive article that might give you a better understanding of how existing routers work. Also great to learn about advanced TypeScript type-level programming techniques.
- ๐ Streaming HTML out of order without JavaScript: This super interesting demo shows we donโt need JavaScript to stream out-of-order HTML chunks, and yet render them in the correct order. All you need is Declarative Shadow DOM and slots. It will be interesting to see if RSC streaming + Suspense could leverage that technique in the future instead of inlining JavaScript.
- ๐ Simple RSC With Vinxi: The Vinxi SDK helps you create your own full-stack framework, and it even has a plugin for React Server Components support!
- ๐ Million.js - Blocks with noSlot Mode: the Million compiler might wrap your components with
<slot>
elements, which might cause issues (styling). This introduces a new experimentalnoSlot
mode.. - ๐ How to add Monaco to a Next.js app to enable custom user workflows: Interesting tutorial that also shows how to deploy untrusted user code to Deno.
- ๐ Conceptual Model of React and RSC: Reflects around the UI=f(state) formula in interesting ways, and concludes RSC kind of breaks the original model.
- ๐ Why React Server Components Are Breaking Builds to Win Tomorrow
- ๐ The End Of My Gatsby Journey
- ๐ React Admin March 2024 Update
- ๐ฆ Million Lint - public beta: A VSCode extension that helps you keep your React code fast thanks to dynamic analysis. Much simpler to use than React Devtools flame graphs. There will be an additional AI-based Lint++ paid service built on top to suggest you possible performance improvements.
- ๐ฆ react-unforget - A compiler for automatic optimization of React apps: After Forgetti, this is another new alternative React compiler coming from the community. See also ๐ฆ Joe Savonaโs feedback.
- ๐ฆ Remix 2.8 - Pass resolved viteConfig to buildEnd hook
- ๐ฆ React Query 5.25 - skipToken, typesafe query disabling
- ๐ฆ TanStack Router 1.18 - route groups
- ๐ฆ Starlight 0.21 - New UI components: Steps, FileTree
- ๐ฆ Storybook 8.0 RC - v8 is officially stable enough to be used in production
- ๐ฆ Onborda - Onboarding wizard flow for Next.js powered by Framer Motion
- ๐ฆ Input-OTP - One-time password input component for React
- ๐ฆ Panda 0.33
- ๐ฆ UVCanvas - React component library for beautifully shaded canvas
- ๐ฅ Jack Herrington - Is Tanstack Router Better Than React-Router?
- ๐ฅ Theo - How Shadcn/ui Actually Works
๐ธ Sponsor
Need more than just a sign-in box?
Clerk streamlines React app authentication and user management, ensuring a quick setup for the modern web.
Experience the benefits of Clerk:
- ๐ Pre-built UI components for sign-in, sign-up, user profiles, and organizations. Customize with any CSS library and deploy on your domain
- ๐ฆ SDKs for React, React Native, Next.js, Redwood, Remix, and other frameworks
- โก Integrations with Firebase, Supabase, Convex, and other BaaS providers
- ๐ User management, social login, magic links, MFA, and more out of the box
Dive into Clerk's quickstarts and tutorials to kickstart your project๐
๐ฑ React-Native
This section is now co-authored with Benedikt. Feel free to send us your comments by email or on Twitter!
Improving Shopify Appโs Performance
Shopify has been a proponent of React Native for a long time. But they did notice their app performance go down since they migrated to React Native. Instead of blaming the tech stack, they got to work and started optimizing for performance. The results speak for themselves: App launch is 44 % faster and screen load times were reduced by 59 %. Hereโs a quick summary of some of the measures they took (hint: FlashList plays a big role in some of these). For details, read their great summary post:
- Initially, only render whatโs visible on the screen (especially true for the home screen)
- Build all screens as lists (based on FlashList)
- Use inlineRequires
- Batch state changes
- Optimize caching
Very interesting insights and impressive results. I hope the Shopify team keeps sharing these details and maybe weโll even see some of the things they mentioned they built during this process ending up as Open Source?
- ๐ธ React Universe Conf combines the best of React Native EU with a new enhanced program. Get your ticket at the lowest price before March 7
- ๐ PR - RCTRootViewFactory: Simplifies brownfield integrations on iOS and spares you from worrying about Old Arch/New Arch/Bridge/Bridgeless combinations.
- ๐ฆ Drag and drop files from other apps in your RN app
- ๐ visionOS docs - Integrating in existing projects
- ๐ Expo - Orchestrate advanced workflows with custom builds: Custom builds allow you to run scripts (bash or JS) before or after Expo builds, for example to run E2E tests, send notifications to your team, โฆ
- ๐ iOS Live Activities and React Native - leveraging the latest iOS features to display your app's most current data without needing to open it: Way more apps should have Live Activities! There is a hurdle for RN devs though, because they need to be written in Swift. This 3-part series walks through all the steps required to add a Live Activity.
- ๐ React Native Error Boundaries - Feature, Partial, and Server: Error boundaries remain an underutilized feature, and every React Native app should have at least one (but ideally more). This post explains why and how.
- ๐ Increase Speed and Security With Native Crypto Libraries
- ๐ Morrow's Summary of the State of React Native 2023 Report
- ๐ฆ Intercom-react-native 6.5 - Now with Expo config plugin
- ๐ฆ Uni Stack - React Native starter w/ Expo, Prisma, tRPC
- ๐ฆ Expo-foreground-actions - Start actions that continue to run in the grace period after the user switches apps
- ๐ฆ React Native 0.74.0 RC 2
- ๐๏ธ RNR 290 - The State of React Native survey with Bartลomiej Bukowski
- ๐๏ธ Rocket Ship 32 - From broke Teacher to Software Engineer with Zach Taylor
- ๐ฅ Simon Grimm - uild a Kids Drawing App with React Native
- ๐ฅ notJust Dev - Build Your Own Blog with React Native (for Web & Mobile)
- ๐ Chain React Call for Speakers now open until May 3, 2024
- ๐ React Universe Conf 2024 - Early bird ends today
๐ Other
- ๐ฌ TypeScript 5.5 Iteration Plan - new Set methods, config extension merging
- ๐ Effective TypeScript - The Hidden Side of Type Predicates
- ๐ Deno - Introducing JSR - the JavaScript Registry
- ๐ OpenJS Launches New Collaboration to Improve Interoperability of JavaScript Package Metadata
- ๐ Open Web Advocacy - Apple backs off killing web apps, but the fight continues
- ๐ Top 8 Recent V8 in Node Updates
- ๐ฆ WebKit Features in Safari 17.44 - CSS @scope, align-content
- ๐ฆ Shiki-magic-move - Smoothly animated code blocks
- ๐ฆ Parcel 2.12 - Macros defined with import attributes running at build times
- ๐ฆ Playwright 1.42 - test tagging, skipped tests annotations
๐คญ Fun
See ya! ๐