https://github.com/moodrain/tiny-http-server
tiny http server with multiple threads
https://github.com/moodrain/tiny-http-server
Last synced: 3 months ago
JSON representation
tiny http server with multiple threads
- Host: GitHub
- URL: https://github.com/moodrain/tiny-http-server
- Owner: moodrain
- Created: 2022-07-28T01:07:56.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-07-28T01:10:44.000Z (almost 3 years ago)
- Last Synced: 2025-01-13T18:37:15.646Z (5 months ago)
- Language: C
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# tiny-http-server
* Tiny http server with multiple threads.
* Respond the Nth number of Fibonacci sequence accordingly, when received the query key named "num".### Compilation
* install uriparser first. https://github.com/uriparser/uriparser
```
mkdir build && cd build && cmake .. && cmake --build .
```### Run Server
```
./tiny-http-server
```### Test
```
wget -qO- http://127.0.0.1:8080?num=10
```