Arya M. Pathakarya2004.hashnode.dev·27 minutes agoThe Complete Journey of a Request Before It Reaches Your BackendIn this blog, we will explore the detailed path of a request from the moment it leaves the client (front-end or another service) until it enters your backend application’s user space. We often focus on the final arrival of an HTTP request handler (li...20 likesbackend
Chaitanya Sonawanephasehumans.hashnode.dev·Feb 16, 2025Understanding HTTP and HTTPS ProtocolsEvery time we visit a website, our browser communicates with a web server to fetch the information we need. This communication happens using protocols called HTTP (HyperText Transfer Protocol) and HTTPS (HyperText Transfer Protocol Secure). These pro...7 likesWeb Dev CohortChaiCode
arjin albaybacklog.hashnode.dev·Feb 10, 2025Backlog #2📚 DevMisc - HTTP Client & System Stability Resources 🌐 HTTP Client Management Microsoft: Using HttpClientFactory - Comprehensive guide on implementing resilient HTTP requests in .NET microservices using HttpClientFactory. Read More Common HttpCli...Back Logsbackend
Khishamuddin SyedforJargon is Easyjargoniseasy.com·Feb 10, 2025HTTP vs HTTPSIntroduction Why Web Security Matters When you visit your favorite website, you might not notice the tiny details that keep your information safe. Yet, every time you shop online or check your bank account, secure communication is at work behind the ...Web Basicshttps vs http
Manshi Tyagithefullstacklens.hashnode.dev·Feb 2, 2025Why HTTPS is More Secure Than HTTPIn today's digital world, secure communication is essential. Every time you browse a website, send an email, or make an online purchase, data travels across the internet using protocols that define how information is transmitted. Among the most criti...ChaiCode
Milan Jovanovićmilanjovanovic.hashnode.dev·Jan 31, 2025Overriding Default HTTP Resilience Handlers in .NETIntroducing .NET 8 resilience packages built on top of Polly has made it much easier to build robust HTTP clients. These packages provide standard resilience handlers that you can easily attach to HttpClient instances. They implement common patterns ...65 readsdotnet
Aditya Sharmaexpressjs-libraries.hashnode.dev·Jan 30, 2025Understanding the 3-Way Handshake in TCP / IP ConnectionsIntroduction When you visit a website, it may seem like your browser simply sends a request, and the server responds. This appears to be a straightforward two-way interaction. However, under the hood, a crucial process known as the TCP three-way hand...TCP
Narsi Bhatinarsibhati.hashnode.dev·Jan 30, 2025Building a Simple Todo API with Express and TypeScriptIntroduction In this blog, we'll explore how to build a simple Todo API using Express and TypeScript. The project will allow users to create, retrieve, update, and fetch todos while maintaining them in memory using a Map. This is a great way to learn...todos
Robert Adamadamcast.hashnode.dev·Jan 28, 2025Introdução às Boas Práticas em API RESTOlá pessoal!Bem-vindos ao artigo desta semana. Você pode conferir os artigos anteriores aqui, e o código está disponível no meu GitHub, basta acessar aqui. Vamos entender e aplicar algumas boas práticas em nossa API? Este texto é um ponto de partida...TV Show Buddybest practices
Tushar Sahunonexpert.hashnode.dev·Jan 28, 2025Why I Use Loggers like Winston and Morgan in My Node.js Apps Instead of Console LogsAs a Node.js developer, debugging and monitoring are integral parts of my workflow. While console.log() might seem like the simplest and most obvious tool for this purpose, it’s far from the best option when building scalable and maintainable applica...Node.js