libhttpserver

C++ library for embedding RESTful HTTP servers in applications

brewmacoslinux
Try with needOr install directly
Source

About

C++ library of embedded Rest HTTP server

Commands

libhttpserver

Examples

Include libhttpserver in a C++ project to create a basic HTTP server$ g++ -o server server.cpp -lhttpserver
Link libhttpserver with pkg-config to get compiler flags$ g++ -o myapp main.cpp $(pkg-config --cflags --libs libhttpserver)
Check installed libhttpserver version and location$ pkg-config --modversion libhttpserver && pkg-config --variable=libdir libhttpserver