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: 2 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 1 year ago)
- Default Branch: master
- Last Pushed: 2024-05-18T04:46:51.000Z (about 1 year ago)
- Last Synced: 2025-01-27T09:09:36.813Z (4 months ago)
- Language: Go
- Homepage:
- Size: 42 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)