https://github.com/jpbruinsslot/webserver-c
A simple HTTP webserver written in C.
https://github.com/jpbruinsslot/webserver-c
c webserver
Last synced: about 1 year ago
JSON representation
A simple HTTP webserver written in C.
- Host: GitHub
- URL: https://github.com/jpbruinsslot/webserver-c
- Owner: jpbruinsslot
- License: mit
- Created: 2021-11-28T22:30:41.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-03-28T15:17:18.000Z (about 3 years ago)
- Last Synced: 2025-05-07T09:14:58.133Z (about 1 year ago)
- Topics: c, webserver
- Language: C
- Homepage:
- Size: 2.93 KB
- Stars: 10
- Watchers: 2
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# webserver-c
A simple HTTP webserver written in C.
This project is the example code that is used for the article:
[Making a simple HTTP webserver in C](https://bruinsslot.jp/post/simple-http-webserver-in-c/).
## Usage
```bash
$ gcc -Wall webserver.c -o webserver
$ ./webserver
```