https://github.com/sunpodder/c-http-server
A simple HTTP Server written in c.
https://github.com/sunpodder/c-http-server
c http-server simple-http-server
Last synced: 6 months ago
JSON representation
A simple HTTP Server written in c.
- Host: GitHub
- URL: https://github.com/sunpodder/c-http-server
- Owner: SunPodder
- License: mit
- Created: 2022-10-27T12:20:44.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-07-10T11:25:23.000Z (over 2 years ago)
- Last Synced: 2025-07-28T06:51:49.353Z (7 months ago)
- Topics: c, http-server, simple-http-server
- Language: C
- Homepage:
- Size: 66.4 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# c-http-server
A simple HTTP Server written in c.
## How to build
```bash
mkdir build
cd build
cmake ..
cmake --build .
# install
cmake --install .
```
## How to use
```bash
# PORT 8080 is default
# you can use whatever you like
http 8080
```
More features will be added soon. :)