eigilhs / c-natra

A Sinatra-style microframework for C.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

C-natra

A Sinatra-style microframework for C. Very inspired by Bogart, but probably even more unsuitable for serious use (or any use at all).

#include <c-natra.h>

get("/") {
	html("<h1>Hello, World!</h1>");
	return HTTP_OK;
}

serve(8000)

More examples here.

Depends on libevent 2.x.

About

A Sinatra-style microframework for C.

License:BSD 2-Clause "Simplified" License


Languages

Language:C 93.3%Language:Makefile 6.7%