Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: about 1 month 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 (6 months ago)
- Default Branch: master
- Last Pushed: 2024-05-18T04:46:51.000Z (6 months ago)
- Last Synced: 2024-05-18T19:23:56.864Z (6 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
[![progress-banner](https://backend.codecrafters.io/progress/http-server/f01e8249-510d-466f-9385-883a2c7022e9)](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)