Jan 9 · 4 min read · In this post, I'll be sharing my journey of developing an HTTP Server from scratch. The focus of this post will be to integrate a Dockerfile into the project. As I am currently learning about Docker, I aim to use containers in this project. About Doc...
Join discussion
Jul 8, 2025 · 5 min read · 👨🏫 What You’ll Learn Today What is an HTTP server? Why learn it without Express? How to create a basic server using Node.js Handling routes like /, /about, and /contact Sending HTML responses Real-life example FAQs to clear common doubts ...
Join discussionApr 26, 2025 · 9 min read · In this post, I'll be sharing my journey during the process of an HTTP Server development from scratch. The purpose of this post will be refactor the code, add HTTP Compression to the server. It only supports the gzip compression scheme. Also, I'll a...
Join discussion
Apr 20, 2025 · 12 min read · In this post, I'll be sharing my journey during the process of an HTTP Server development from scratch. The purpose of this project is the understanding of how an HTTP server works under the hood. Curiosity and a desire to challenge myself are also b...
Join discussion
Mar 3, 2025 · 4 min read · When I first started working with Node.js, one of the most exciting things I learned was how to create a simple HTTP server. It felt like magic just a few lines of code, and I had a server responding to requests! If you’re just starting out, this g...
Join discussion
Feb 20, 2025 · 19 min read · HTTP stands for Hypertext Transfer Protocol. It is the foundation of the World Wide Web and is used to load web pages through hypertext links. HTTP is an application layer protocol designed to transfer information between networked devices and operat...
Join discussionAug 23, 2024 · 4 min read · A few days ago, I was looking into an idle timeout error reported by a client using one of our APIs. To better understand HTTP server timeouts, I wrote some server and client code for testing, which I'd like to share with you. This might help others ...
Join discussionJun 30, 2024 · 3 min read · Here is an example of a simple HTTP server using Python's built-in http.server module. This server will handle basic GET and POST requests. Basic HTTP Server Example import http.server import socketserver PORT = 8000 class MyRequestHandler(http.ser...
Join discussion