Crow
Crow copied to clipboard
A Fast and Easy to use microframework for the web.
There seems to be an issue with generating the `.deb` file where boost isn't specified as a dependency. thus causing `dpkg` to only install Crow. @Leon0402 if you can help...
Should make compiling them faster. Note: Catch2 has instructions on using multiple files such that Catch2 is only compiled once
Regarding my opened bug "connection.send_binary() out of memory #340" I created a blocking send function with a local buffer and a deadline_timer which will cancel the asio::write after 3 seconds...
I have read through the docs, mostly app and middleware, but I cannot figure out how to set the request size limit. Or if it doesn't let one set that,...
Would anyone be interested in seeing Crow's documentation in a language other than English?
Hello, I would like to suggest an enhancement about CROW_STATIC_DIRECTORY because this definition is not always very convenient for building. CROW_STATIC_DIRECTORY should be the default value for example and I...
Support the websocket extension `permessage-deflate`. ipkn/crow#329 should help (use existing zlib implementation if possible)
Variables like `CROW_LOG_LEVEL` and `get_template_base_directory_ref()` aren't tied to an app, which is an issue in case a user wants to run 2 or more apps with different settings for the...
Looking at https://github.com/conan-io/conan-center-index/pull/8022 and https://github.com/microsoft/vcpkg/pull/20766, it shouldn't be too difficult to either clone the repositories and make the changes automatically. Or pull only the necessary files and change them. leaving...
Hello, I encountered a problem when sending binary data through websockets using connection.send_binary(). Example: datasize is >1MB connection is slow (using vpn) while(true) { connection.send_binary(data); sleep(100); } My guess is...