A lightweight webserver based on libuv and http-parser
./start_build.sh
cd build
make
./libuv_webserver
curl http://127.0.0.1:8000/
ab -n 5000 -c 500 http://127.0.0.1:8000/
- split code into tcp and http part
- http part will transform between structs and http-parser output
- check memory leaks on libuv part.
- build a http response part for easy responses.