Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

micro web-framework for c

Tags:

c

For a weekend project I'm looking for a micro web-framework like bottle.py (http://bottlepy.org) but for plain old C. Sadly Google was not very helpful. Any suggestions are welcome!

like image 535
brejoc Avatar asked Jan 13 '12 11:01

brejoc


People also ask

Is there a Web framework for C?

facil.io is an evented Network library written in C. facil.io provides high performance TCP/IP network services by using an evented design that was tested to provide an easy solution to the C10K problem.

What is a micro web framework?

A microframework is a term used to refer to minimalistic web application frameworks. It is contrasted with full-stack frameworks. It lacks most of the functionality which is common to expect in a full-fledged web application framework, such as: Accounts, authentication, authorization, roles.

Why is flask called a microframework?

Flask is a micro web framework written in Python. It is classified as a microframework because it does not require particular tools or libraries. It has no database abstraction layer, form validation, or any other components where pre-existing third-party libraries provide common functions.

What is Micro framework in Python?

Python Web Framework — Python Flask. Like we've said before, Flask is a microframework for Python. It includes a built-in development server, and unit-testing support. It is also fully Unicode-enabled with RESTful request-dispatching and WSGI compliance.


1 Answers

After some more search I found libSoup, which looks very nice and is really easy to use. But beware: libSoup is part of GNOME - so this might not be so micro after all when it comes to dependencies.

like image 181
brejoc Avatar answered Sep 20 '22 13:09

brejoc