https://github.com/shresht7/codecrafters-http-server-go
CodeCrafters Challenge: Build your own HTTP Server
https://github.com/shresht7/codecrafters-http-server-go
Last synced: 12 months ago
JSON representation
CodeCrafters Challenge: Build your own HTTP Server
- Host: GitHub
- URL: https://github.com/shresht7/codecrafters-http-server-go
- Owner: Shresht7
- Created: 2024-05-17T09:36:39.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2025-04-27T12:22:45.000Z (about 1 year ago)
- Last Synced: 2025-04-27T12:29:23.174Z (about 1 year ago)
- Language: Go
- Homepage:
- Size: 47.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Build Your Own HTTP Server
[](https://app.codecrafters.io/users/codecrafters-bot?r=2qF)
This is a finished project for the
["Build Your Own HTTP server" Challenge](https://app.codecrafters.io/courses/http-server/overview) in Go.
[HTTP](https://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol) is the
protocol that powers the web. In this challenge, we build a HTTP/1.1 server
that is capable of serving multiple clients.
## 📕 References
- [RFC 9112 - HTTP/1.1](https://datatracker.ietf.org/doc/html/rfc9112)
- [Mozilla Developer Network Guide - HTTP](https://developer.mozilla.org/en-US/docs/Web/HTTP)
- [Mozilla Developer Network - HTTP Messages](https://developer.mozilla.org/en-US/docs/Web/HTTP/Messages)
- [HTTP Request Syntax](https://www.w3.org/Protocols/rfc2616/rfc2616-sec5.html)
- [HTTP Persistent Connection](https://en.wikipedia.org/wiki/HTTP_persistent_connection)