You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Grant Limberg 8e6e4ede6d
Add prometheus metrics for Central controllers (#1969)
3 years ago
..
examples Add prometheus metrics for Central controllers (#1969) 3 years ago
include/jdl Add prometheus metrics for Central controllers (#1969) 3 years ago
CMakeLists.txt Add prometheus metrics for Central controllers (#1969) 3 years ago
LICENSE Add prometheus metrics for Central controllers (#1969) 3 years ago
README.md Add prometheus metrics for Central controllers (#1969) 3 years ago

README.md

HTTP Client lite: C++ Cross-platform library only from single-file header-only

This is a lite, C++ cross-platform header-only client library for http request based on csachs/picohttpclient project.

A Lightweight HTTP 1.1 client where to quickly do very simple HTTP requests, without adding larger dependencies to a project.

License

http client lite is distributed under the MIT License.

Example usage

To see how this can be used see the examples folders.

Example:

#include <jdl/httpclientlite.hpp>
...
using namespace jdl;
...
HTTPResponse response = HTTPClient::request(HTTPClient::GET, URI("http://example.com"));
cout << response.body << endl;
...