An open API service indexing awesome lists of open source software.

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.

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. :)