gayatri kumargeekee.hashnode.dev·Nov 14, 2024JSON Journeys: Navigating Data Formats!Imagine you're an explorer setting off on a journey to discover a hidden treasure of information. Along the way, you encounter maps and instructions that help you find, understand, and organize this treasure. In the world of web development, JSON (Ja...30 likesWeb DevelopmentJavaScript
OBULIPURUSOTHAMAN Kobulipurusothaman.hashnode.dev·Oct 28, 2024Rest Api'sREST API’s : REST – Representational State Transfer REST Defines an Guideline how Client and Server can exchange the Representational State of data so its to full fill the Requirements of an Application Guidelines : Client Server Architecture Cacheab...10 likesState and Stateless
Vedansh Mishravedansh.hashnode.dev·May 25, 2024Unlocking the Mysteries of the Fetch API: Beyond the BasicsBefore starting, I have a question. Let's say you get a 404 error (file not found) while fetching a request. Where will the data get stored: in resolve or reject? Stay connected with the article to find the answer by the end. You must have been using...78 readsfetch API
Imọlẹimole.hashnode.dev·May 9, 2024What happens when you type ‘google.com’ in your browser and press Enter?Have you ever wondered what happens behind the scenes when you enter a simple query like 'google.com' into your browser's address bar? The process might seem straightforward, but it involves a complex series of steps that seamlessly connect your requ...1 like·57 readsweb request
Sam11pmcoders.hashnode.dev·Mar 21, 2024ExpressJS send methodwhile I was learning NodeJS I saw this piece of code. import express from 'express'; const app = express(); //routes app.get('/', (req, res) => { res.send('<h1>Hello World</h1>'); }); app.listen(3000, () => { console.log('App is running on po...appraoches
tsawant635sawant.hashnode.dev·Mar 19, 2024Unlocking Middleware: Simplifying its Role in Web Development 🚀Introduction: Middleware is essentially software that sits between different components of a system, facilitating communication and data processing. Middleware is like the silent hero of web development, quietly handling tasks behind the scenes to en...10 likesMiddleware
Nehal Ingolelearnwithnehal.hashnode.dev·Mar 9, 2024MiddleWare in NodejsIntroduction Are you diving into the world of Node.js and Express.js? Then you've undoubtedly encountered the term "middleware." If you're still unsure about what middleware is and how it works, fear not! In this comprehensive guide, we'll delve into...NodeNode.js
Nada Pivceviccodingdiaries.hashnode.dev·Feb 15, 2024Jest Unit Testing - Part 2Route Handlers I created a simple route handler to retrieve latitude and longitude from an address, using Google's Geolocation API. Remember, route handlers in Next.js allow you to create custom request handlers for a given route, and they are always...Jest testing challengesroute handler
Giver Kdkgiver-node.hashnode.dev·Jan 30, 2024Express.js: Request ParametersRequest parameters are additional data attached in the request URL sent to the server. Server then provides customized response according to that parameter provided with request. Route Params It is extra info attached in request URL by using ':' symb...request-parameter
Zainab JINARIbenizcode.hashnode.dev·Jan 3, 2024Understanding Request and Response ExplainedIn this blog we are going to understand: What is a client? What is a server? Client VS Server: Introduction: Before diving into the concepts in a beginner-friendly way, let's start by addressing some common questions that arise when you use your...Requests