Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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)