Skip to content

praveenmunagapati/ciao

 
 

Repository files navigation

Ciao [tʃaʊ]

a minimal C++ web framework inspired by lor framework which respects Sinatra style.

Example: Hello World!
#include <ciao/app.h>

int main(int argc, char* argv[]) {
    ciao::App app;
    app.get("/", [](ciao::Request& req, ciao::Response& res, ciao::Next& next){
        res.send("hello world!");
    });
    app.listen(8080).run();
    return 0;
}

About

a minimal C++ web framework (beta)

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 94.4%
  • CMake 3.4%
  • Shell 2.0%
  • C 0.2%