PSpragalbh srivastavinhow-nodejs-works.hashnode.dev·Feb 6, 2025 · 2 min readHow Nodejs works?The client makes a request to the server. The request goes to the server.First, the request gets queued in the event queue.After that, the request is sent to the event loop.The event loop continuously monitors the event queue for requestsand processe...00
PSpragalbh srivastavinrsc-payload.hashnode.dev·Nov 29, 2024 · 1 min readRSC Payload?The RSC payload (React Server Components payload) is the serialized data sent from the server to the client to render React Server Components (RSC) in a Next.js application. This payload contains a mix of: HTML Markup for Server Components (pre-rend...00
PSpragalbh srivastavinhydration.hashnode.dev·Nov 29, 2024 · 1 min readHow a Server-Rendered Page Becomes Interactive in Next.jsWhen the server sends the webpage to your browser, it's just a "body" (HTML). It looks complete, but it can't think or respond to actions (like clicking a button or typing in a form). Hydration is the process where React's JavaScript "wakes up" and c...00
PSpragalbh srivastavinnextjs-notes.hashnode.dev·Nov 28, 2024 · 1 min readA Beginner's Guide to Starting with Next.jsWhat is nextjs? The React Framework for the web (React’s full-stack architecture vision) (developed by Vercel) or we can say meta-framework built on top of react allows us to build complex full-stack web apps and sites The Next.js key ingredients Ser...00