KSKanishka Shashiinhtml-dev09.hashnode.dev·1d ago · 12 min readHow React Works Internally: Virtual DOM, Reconciliation, and RenderingIntroduction What actually happens when we call setState? You click a button. setCount(count + 1); The number on the screen changes instantly. But what happens behind the scenes? Does React rebuild 00
KSKanishka Shashiinhtml-dev09.hashnode.dev·1d ago · 19 min readNext.js Explained: Why It Became the Default React FrameworkThe question that started it all If React is so popular, why was Next.js created? React solved a real problem: building complex, interactive user interfaces out of small, reusable, declarative compone00
HKHarsh Kushwahainharshkushwahadev.hashnode.dev·1d ago · 7 min readThe Easiest Way to Build Animated Page Transitions in Next.js (No Framer Motion)Web apps have always had one problem that native apps don't. When you tap something in an iOS app, the new screen slides in from the right. Tap back, it slides back. The animation tells you where you 00
MEMohammed Ehabinmohamed-ehab.hashnode.dev·2d ago · 13 min read9 Real Fixes That Took My Next.js App's PageSpeed Score From Under 60 to 1009 Real Fixes That Took My Next.js App's PageSpeed Score From Under 60 to 100 I spent weeks chasing this. My PageSpeed score was sitting under 60, and for a while I genuinely didn't know why. Nothing "00
YAYoni Aokiinblog.yoniakabecky.com·2d ago · 4 min readWhy Shopify cart attributes don't show up on the order page (and how I fixed it)TL;DR 🛒 If your Shopify cart attributes are empty in /cart.js or missing on the order page: Add the input with name="attributes[your-key]" on the cart page Check saved values at {your-store-url}/ca00
Ttechpotionsintechpotions.hashnode.dev·2d ago · 5 min readMultilingual Next.js: RTL, French & Spanish Done RightOriginally published at techpotions.com. Multilingual Next.js website development isn't just about swapping strings. If you're building for the MENA region or European markets, you'll face three disti00
GMGeetanjali Mundeingeetanjalidev.hashnode.dev·3d ago · 5 min readMy Journey from Frontend Developer to Building a Production-Ready AI Platform with Next.js, Go & Google GeminiIntroduction When I started learning web development, I was focused on creating attractive user interfaces using HTML, CSS, and JavaScript. Like many beginners, I thought building a beautiful website 00
KSKanishka Shashiinnodej.hashnode.dev·3d ago · 19 min readReact Fundamentals: Components, JSX, State, and Re-renderingThe question that started it all Why did developers create React when JavaScript already existed? JavaScript could already change a web page after it loaded — you could grab an element with document.g00
NSNikhil Sharmainniikkhilsharma.hashnode.dev·3d ago · 2 min readFront End System Design: An IntroductionI recently appeared for the Medibuddy SDE 1 interview, I thought it is going to be a DSA round but the HR told me it's going to be an LLD focused round. First two rounds were frontend system design fo00
KSKanishka Shashiinhtml-dev09.hashnode.dev·4d ago · 25 min readModern Next.js: Routing, Layouts, Server Components, API Routes & Server ActionsThe question that started it all Can a React application have both frontend and backend inside the same project? For most of React's history, the honest answer was "not really, not cleanly." A typical00