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...Discuss·10 likesState and Stateless
FMZ Quantfmzquant.hashnode.dev·May 27, 2024Call Dingding interface to realize robot push message1. Summary In real transactions, in order to know the FMZ Quant robot trading status in time, sometimes we need to send the transaction results executed by the robot to WeChat, email, SMS, etc. However, there are hundreds of various kinds of informat...DiscussDingDing
Matteo CollinaforPlatformatic Blogblog.platformatic.dev·Mar 29, 2024Exploring HTTP Clients: Axios, Requests, and Node-FetchWhen building dynamic web applications with Node.js, the choice of HTTP client is pivotal for effective communication with web APIs and efficient handling of website queries. Selecting the right HTTP client for your project can significantly influenc...Discuss·24 likes·1.5K readsnode-fetch
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...DiscussJest testing challengesroute handler
Faizan Anwarlogicodev.hashnode.dev·Aug 30, 2023🖥 HTTP Request Response Cycles🔍 Ever wondered what happens when you hit 'Enter'? The web's dance of data servers unfolds in ways you've never imagined! We take a thrilling journey through the mesmerizing world of HTTP Request Response Cycles. Get ready to be amazed! 1️⃣ Your bro...Discusshttp
Roshan Guragainroshangrg.hashnode.dev·Jul 3, 2023API Handling In Frontend.API stands for Application Programming Interface. It is a set of rules and protocols that allows different software applications to communicate with each other. APIs enable developers to access certain functionalities or data from external systems or...DiscussAPIs
Subhamcodexam.hashnode.dev·May 19, 2023GitHub API Rate Limit Exceeded ProblemBasically, we are using https://api.github.com/users/subham-maity to get the data of the user. We are using fetch to get the data from the API. We are using useEffect to fetch the data from the API. Example Github Repo If you visit https://api.github...Discuss·10 likes·29 readsAPIs
CHARLES UDOcharless.hashnode.dev·Dec 14, 2022HTTP RequestsIntroduction The internet is home to a vast amount of resources spread across an equally vast number of servers waiting to be utilized. The client-server model is important to understand how these resources are accessed. The client-server model descr...Discuss·1 likehttp
Archie Andrewssalmanjs.hashnode.dev·Dec 10, 2022Introduction to Axios for requests - 2Introduction What is Axios? Axios is a promise-based HTTP client for JavaScript. It can make HTTP requests and handle the transformation of request and response data. Axios can be used on a node application or in a simple web app. Let's get started I...Discuss·65 readsaxios
Syed Jafer KforMakereadingsyedjaferk.hashnode.dev·Sep 28, 2022What is the Purpose of the Preflight request?Introduction In your software development, you might have noticed an OPTIONS request is been sent for all kinds of complex requests (requests with custom headers). This type of request is a Preflight request. In this post, you will understand the rea...Discuss·173 readsCourse: HTTPCORS