Caroline Gomes·4 hours agoHyperText Transfer Protocol (HTTP)Currently, most applications we use are constantly interacting with the internet, both mobile and web. Most communications that occur on the internet are carried out with web requests through the HTTP protocol. HTTP is an application-level protocol used to access the World Wide Web (WWW). The term hypertext refers to…Http Request5 min readHttp Request5 min read
caraerskine·1 day agoMy first time using an async/await function in a useEffect, step-by-stepWhen the component mounts, fetch the user data! Got it. When a component renders, the UseEffect is executed after render. And because I have an empty dependency array, it will only run once, after the initial render. If I had dependencies in the array, the useEffect would be triggered again…Http Request4 min readHttp Request4 min read
Pavlo Kolodka·3 days agoEfficient Client-Server Communication: An Overview of Protocols and TechniquesExploring HTTP, Polling, Webhooks, SSE, and WebSockets in the client-server model — Introduction: “In the world of web development and real-time communication, understanding various methods of data exchange is crucial. Modern web applications require efficient and seamless communication between the client and the server to deliver dynamic content and provide real-time updates. …Http Request15 min readHttp Request15 min read
Avinash Dogiparthi·2 days agoHow to Make a XHRThe constructor XMLHttpRequest() initializes an XMLHttpRequest. It must be called before any other method calls. The “original” way of sending requests via JS. Does not support promises, so …. lot of call backs! WTF is going on with the weird capitalization? Clunky syntax that i find difficult. Okay, so we…Http Request3 min readHttp Request3 min read
Yuvi Dexter·6 days agoExploring HTTP Requests: A Comprehensive GuideIn this Post, we will Learn about HTTP Requests in Javascript (can be used in React Js & Next Js) — Welcome to our comprehensive guide on HTTP requests! In this blog post, we’ll delve into the core concepts of HTTP requests and explore how to implement them in your React(for example here) applications. Let’s embark on this exciting journey together! 🚀 What is HTTP and Why is it Important? HTTP (Hypertext Transfer Protocol) is the foundation of communication…Http Request4 min readHttp Request4 min read
Sam Sunil·May 26Blocking HTTP method using AWS WAFThe HyperText Transfer Protocol (HTTP) is designed to make communication between the client and the server. It acts as a request-response protocol which means if a client sends a request to the server the server will return a response to the client. Some of the common HTTP methods are GET…Http Request4 min readHttp Request4 min read
Ritesh Sahu·May 26An Extensive Overview of Web Applications for BeginnersUnderstanding Structure, Functionality, and Communication — Hello, everyone…!!! This blog post will provide you with a comprehensive introduction to web applications, specifically tailored for beginners. Throughout this journey, we will delve into various topics related to web applications, starting with the fundamental communication between clients and servers. …Http Request15 min readHttp Request15 min read
Isuru Harischandra·May 22Understanding HTTP HeadersIntroduction HTTP headers are a crucial aspect of web communication that provides critical information to servers and clients. Web developers must understand HTTP headers since they can have a significant impact on website performance and security. …Http Request5 min readHttp Request5 min read
GautamKalla·May 21Can we send payload in HTTP GET request ?Short answer? yes. But there is a high chance that you never did and it’s high time we discuss why. How did I discover it? In my org., an internal tool that I’m currently working on is using Elasticsearch, which is popular with ELK stack. It instantly caught my interest…Http Request2 min readHttp Request2 min read
Mustafa Morbel·May 19Observer Request Manager: Modern API Interaction Made SimpleIn this article, we’ll break down a TypeScript script that utilizes the Observer design pattern for HTTP request management. This can be an excellent architecture for real-time or event-driven programming. GitHub - mkare/observer-request-manager You can't perform that action at this time. You signed in with another tab or window. You signed out in another tab or…github.com You can find the complete code for the Observer Request Manager on GitHub: Observer Request Manager Full CodeHttp Request7 min readHttp Request7 min read