A bare-metal HTTP server built from scratch in C++ using raw sockets.
No frameworks. No abstractions. Just pure socket programming to understand how the web actually works under the hood.
- Learn TCP/IP fundamentals hands-on
- Understand HTTP protocol at the byte level
- Master low-level systems programming on Windows (Winsock)
g++ -o servy main.cpp http_server.cpp -lws2_32Work in progress.