aboutsummaryrefslogtreecommitdiff
path: root/README.md
blob: 998fdbfa24b67115d3f5e81620cbe6de5ad44dab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Beaker
Beaker is a lightweight web framework written in C, designed for building simple and efficient web applications. It currently provides handling HTTP requests, routing, serving static files, rendering HTML templates and managing cookies.

## Usage
Look at the files in examples for usage

## Installation
```bash
  git clone https://github.com/gabrielf35/beaker.git
  cd beaker
  sudo make install
```
    
## Roadmap

- Handle different types of POST requests
- Write documentation
- Add more robust logging
- Write more examples