https://github.com/ecmgs/servidor_http
https://github.com/ecmgs/servidor_http
Last synced: 9 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/ecmgs/servidor_http
- Owner: ECMGS
- License: mit
- Created: 2024-08-18T14:28:58.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2025-08-17T16:56:49.000Z (11 months ago)
- Last Synced: 2025-08-17T18:28:54.666Z (11 months ago)
- Language: Rust
- Size: 926 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
## Servidor HTTP
This project was created in order to understand better how the HTTP/1.x works as well as learn a bit more about the Rust programming language. It is a personal project and isn't ready for any production environment, as the project is created with educational purposes, trying to use the least amount of external libraries possible.
### What works?
- Basic connection handling
* Single threaded connection handling (The server blocks while handling a connection)
- Basic route handling
* Routers
* Different HTTP methods
* Static files and routes
- Basic request handling
* Handle querys
* Handle request body
- Basic response handling
* Added support for sending files
### What's going to be implemented?
- Multiple threaded route handling
- Connection rejection (Basic DoS handling, Slow loris...)
- Basic templating?