Search results for #ReactCompiler
Try it now 👉 npm i -D babel-plugin-react-compiler@rc Explore hands-on questions and playbooks at GreatFrontEnd: greatfrontend.com/?utm_source=so… #ReactJS #ReactCompiler #Performance #FrontendDev #CleanCode #JavaScript #DX #React19 #GreatFrontEnd
🚨 #ReactJS devs: with the new React Compiler, naming matters! If your custom hook returns a ref, add a Ref suffix: const myRef = useMyHook() ✅ const myVal = useMyHook()❌ Without it, the compiler assumes .current access — breaks memoization! #ReactCompiler #reactnative
4/ TL;DR: The compiler rewards clean, readable code. You’ll write less “optimization junk” and your components will still run fast. Honestly, it’s how React always should have felt. #reactjs #reactcompiler #devthoughts
Our #ReactNative app faced a persistent 2s+ UI stutter on "Add to Cart" due to excessive re-renders, majorly due to accumulated tech debt. Check out this blog post detailing how we got around fixing it with minimal code changes (+ #reactcompiler) medium.com/engineering-ud…
Still struggling with React performance issues?Forget manually optimizing with memo, useMemo, or useCallback. . Let the React Compiler handle it for you automatically! ️ #rejoicehubllp #reactjs #frontenddev #newintech #performanceoptimization #reactcompiler #reactscan
Last week I updated I enabled #reactcompiler in 7 #nextjs apps and removed all useMemo hooks. It all just worked. Even components that would become really slow earlier before I used useMemo. It cleans up the code a lot.
@blenderskool Lessons from adopting react compiler. @elevenlabsio #reactnexus #reactbangalore #reactcompiler
But here's the twist: The #ReactCompiler changes the game. It allows API innovations (signals, context updates) to happen underneath the hood. Devs & AIs still interact with familiar high-level code. Evolution without breakage.
🎬 Clap de fin pour cette édition de @DevoxxFR ! Un grand merci à l’équipe orga et à tous les bénévoles 🙏🏼Et merci à toutes celles et ceux qui sont venus assister à notre talk sur le #ReactCompiler avec @Slocalyy 🙌🏼 Pour revoir les slides 👉🏼 cruuzazul.dev/speaking/react…
C’est parti pour ce deuxième jour de @DevoxxFR ! Si jamais vous êtes présents à l’événement et que @reactjs vous intéresse, venez nous voir @CruuzAzul et moi vendredi à 13h30 en Neuilly 153 pour nous voir parler de #ReactCompiler !
🎉 Aujourd’hui, c’est @DevoxxFR ! J'aurais la chance de parler de @reactjs et plus précisément du #ReactCompiler aux côtés de @Slocalyy 😍 On vous embarque dans les coulisses de cette magie Vendredi à 13h30 — Salle Neuilly 153 ✨
React Compiler: Finalmente Consertaram o React? youtu.be/B8UDsHtBUsA @reactjs #reactjs #reactcompiler
🚀 @Devoxx approche à grands pas ! Si vous êtes de passage et que l’univers de @reactjs vous passionne, ne manquez pas notre session sur le #ReactCompiler le vendredi à 13h30 🗓️ Réservez votre place dès maintenant sur leur application et venez en apprendre plus ! 🎟️
🚀 @Devoxx approche à grands pas ! Si vous êtes de passage et que l’univers de @reactjs vous passionne, ne manquez pas notre session sur le #ReactCompiler le vendredi à 13h30 🗓️ Réservez votre place dès maintenant sur leur application et venez en apprendre plus ! 🎟️
Today I fixed 2 bugs with react-compiler github.com/facebook/react… github.com/facebook/react… wdyt #ReactCompiler team? 😎
Great work #ReactCompiler team! 2 hours after my previous tweet, you already submitted PR with a fix 😍 I have another issue: The following code is not optimized, and eslint-plugin-react-compiler doesn't report any errors too, changing 0 to '0' string, makes the compiler work!
I found an interesting bug with #ReactCompiler when accessing the function from the props object using dot notation and calling it => broke memoization. Because the compiler checks all props object if ($[0] !== props) { but should if ($[0] !== props.reportBug) {
I spoke about #ReactCompiler, what it does and what you need to optimize next, explaining how react rerenders components and more, will share recording once ready