Skip to content

Latest commit

 

History

History
20 lines (13 loc) · 565 Bytes

README.md

File metadata and controls

20 lines (13 loc) · 565 Bytes

HTTP Web Server (from Scratch)

had a lot of fun building this HTTP server from scratch written in Rust.

Learned a lot of things like:

  • How a TCP and HTTP Protocols work under the hood
  • What Information and How the Infromation is carried in an HTTP requests.
  • Request Types and much more.

Used ThreadPooling Method to Handle multiple/limit requests.

Run this Locally

  1. Clone this repositry

    git clone https://github.com/ayush24k/http-web-server
    
  2. Start the server

    cargo run
    
  3. Open your browser & go to 127:0.0.1:3000