SAShahbaz Ahmedinfundamentalsofreact.hashnode.dev·Aug 29 · 23 min readState Management: Context API, Prop Drilling, React.memo, useMemo, and useCallbackWhy State Management Becomes Difficult? State management becomes difficult as applications grow because the distance between where state lives and where it’s needed increases, forcing developers into 00
SAShahbaz Ahmedinfundamentalsofreact.hashnode.dev·Aug 27 · 18 min readReact Hooks MasterclassHow Does React Remember Information Between Renders? Here's a question that sounds simple but trips up most people learning React: when a component function runs top to bottom every time it renders, h00
JSJayesh Sojitrainjayesh-sojitra.hashnode.dev·Aug 25 · 3 min readTop 10 React Hooks You Should KnowReact hooks get treated like a fixed list everyone already knows. In practice, most developers lean on useState and useEffect and stop there — which means they're missing hooks that solve real, common00
ODOgwu-Nelson Davidinnelson-david.hashnode.dev·Jul 27 · 4 min readBuilding a Production-Ready Virtualized List Component in React from ScratchRendering large datasets in React is a one way road to kill performance. If you try to render 10,000 DOM nodes at once, the browser will choke on layout calculation, garbage collection, and event list00
MSMohammad Shahzeb Alaminmdshahzebalam.hashnode.dev·Jul 22 · 7 min readFrom useEffect to TanStack Query: What Changed My PerspectiveWhen I first started learning data fetching in React, the dependency array in useEffect confused me more than the fetch request itself. But after building a Meme Generator, it finally started making s10
SSSailesh Shresthainblog.jobins.jp·Jul 22 · 7 min readMastering useRef in React: A Practical Guidef you’re diving into React, you’ve likely come across the useRef hook. But what exactly is useRef(), and how can it make your life easier? In this post we’ll cover what useRef is, walk through five00
KSKanishka Shashiinnodej.hashnode.dev·Jul 10 · 11 min readReact Hooks Masterclass: useState, useEffect, and Custom HooksIntroduction How does React remember information between renders? Imagine clicking a button that increases a counter. The component function runs again after every click, yet React somehow remembers t10
SMSyed Muhammad Aliindevstacked.hashnode.dev·Jun 20 · 12 min readHow to Setup Resend Email in Next.js 16 (2026 Complete Beginner Guide)Sending emails is one of the most common requirements in modern web applications. Whether you're building: A contact form Authentication system SaaS application Newsletter platform E-commerce store 00
SMSyed Muhammad Aliindevstacked.hashnode.dev·Jun 17 · 15 min readBuild a Todo App with Next.js 16 and Supabase (2026 Guide)In this guide, we’ll build a production-ready Todo App using: Next.js 16 Supabase TypeScript Tailwind CSS Server Actions Authentication Row Level Security (RLS) This tutorial focuses more on logic a00
AOAbiodun Oluwafunmibiinfunmibitech.hashnode.dev·Jun 9 · 5 min readUnderstanding React Hooks: useState, useEffect and Custom Hooks ExplainedBefore hooks React was split into two worlds. Class components that could manage state and lifecycle methods. Functional components that were simpler but couldn't do much beyond displaying UI. Hooks c10