SYSaurabh Yadavinthesaurcecode.hashnode.dev·3d ago · 8 min readNode.js HTTP Module – Building My First Server🔹 What Is HTTP? HTTP stands for: HyperText Transfer Protocol It's the protocol commonly used for communication between clients and servers on the web. For example, when you visit: example.com your00
SYSaurabh Yadavinthesaurcecode.hashnode.dev·3d ago · 9 min readNode.js – Introduction & How Node.js Works🔹 What Is Node.js? Node.js is a JavaScript runtime that allows JavaScript to run outside the browser. Normally, JavaScript is associated with browsers: Chrome Firefox Edge Safari ↓ JavaScript Nod00
SYSaurabh Yadavinthesaurcecode.hashnode.dev·Sep 11 · 8 min readReact Complete – Final Revision, Project & What I Learned🔹 1. What Is React? React is a JavaScript library for building user interfaces. Instead of thinking about an entire webpage as one large piece, React encourages us to break the UI into reusable compo00
SYSaurabh Yadavinthesaurcecode.hashnode.dev·Sep 10 · 12 min readReact API Integration – Fetching & Managing DataA frontend application becomes much more powerful when it can communicate with a backend. Until now, most of our React applications have worked with data that already exists inside the component: cons00
SYSaurabh Yadavinthesaurcecode.hashnode.dev·Sep 10 · 12 min readReact useEffect – Side Effects & Component LifecycleAfter learning Lifting State Up on Day 68, we now understand how components can share and coordinate state. But there is another important question: What happens when our component needs to do someth00