Crow
Crow copied to clipboard
A Fast and Easy to use microframework for the web.
example-chat has runtime errors because std::function is assigned null in places. This is a fix for that, with unittests.
Please, consider the following issue: Version: current master @ 4f3f5deaaa01825c63c83431bfa96ccec195f741 ASIO version 1.24.0 (Boost not installed) ``` #include #include #include int main() { crow::SimpleApp app; CROW_ROUTE(app, "/do")([&]() { return crow::response(200);...
It seems that CrowCpp does not support the full [mustache specification]() and this can be a problem. Specifically parents, blocks and dynamic names don't seem to be fully supported. ##...
Hi, I'm using the websockets feature to send binary data (image thumbnails) to one or more clients. However I'm noticing that if there is one or more slower clients (connections...
@The-EDev > Another challenge is whether or not the rest of the request should be parsed in the case of a catchall handler. This however can be left up to...
Hello! I am curious if the project maintainers would be open to me proposing this project for integration into Google's OSS-Fuzz project? I would develop the build script and fuzz...
I can only get the static directory path during runtime, and can therefore not use the defines to set it. So this is more of a tiny feature request. Would...
I have not tested this code (sorry) but it aims to solve the problem of reading to smaller types like uint32_t and uint16_t. The string stream implementation should throw up...
I would like to re-use html templates like the header. Is it possible to do with Crow? Here they talk about those sections https://jgonggrijp.gitlab.io/wontache/mustache.5.html I tried this but it renders...
As far as I understand from the error message the types that it's possible to store at the moment inside `crow::SessionMiddleware::context` are long `int`, `bool`, `string` and `double`. Would it...