Crow icon indicating copy to clipboard operation
Crow copied to clipboard

A Fast and Easy to use microframework for the web.

Results 180 Crow issues
Sort by recently updated
recently updated
newest added

in response to https://github.com/ipkn/crow/issues/47, https://github.com/ipkn/crow/issues/219, https://github.com/ipkn/crow/issues/292. I'm not sure how to go about this, a good place to start implementing would be the comments of the issues themselves, and maybe...

feature

Currently Crow uses the http and websocket proxy modules in Apache and Nginx to allow them to handle connections rather than crow itself. This can be slow and a potentially...

feature
help wanted

While Crow supports `Connection: Keep-Alive`, it ignores the optional `keep-alive` header which defines parameters for the persistent connection. The [specification](https://datatracker.ietf.org/doc/html/rfc2068#section-19.7.1.1) says that there are no parameters defined. But [MDN](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Keep-Alive) mentions...

feature

Per https://www.rfc-editor.org/rfc/rfc6455#section-5.5.1, when a websocket connection is closed, if the closing frame contains a body it should also contain a 2-byte 'closing status code'. Currently, the code in question (https://github.com/CrowCpp/Crow/blob/master/include/crow/websocket.h#L169)...

feature

Sorry if this is not the place to ask this but i could not find info anywhere about this. I have generated my certificates with `certbot` and everything works fine...

question

On windows, with error 10053, a websocket instance sometimes deleted before post-ed/dispatch-ed asynchronous I/O events invocation, which makescompletion handler refer to dangled pointer 'this'. We can detect whether 'this' pointer...

Used crow-all and boost, but it throws error: ``` ====================[ Build | CrowTest | Debug ]================================ C:\Users\A\AppData\Local\JetBrains\Toolbox\apps\CLion\ch-0\222.4167.35\bin\cmake\win\bin\cmake.exe --build C:\Users\A\CLionProjects\CrowTest\cmake-build-debug --target CrowTest -j 9 [1/1] Linking CXX executable CrowTest.exe FAILED: CrowTest.exe...

Introduced with revision b986d1e38a853277bc31e4b628e0b7160c0af4e1 Test program: ```cpp #include "Crow/include/crow/middlewares/cors.h" #include "crow.h" crow::response crypto_put(const crow::request& req) { std::cout signal_clear(); app->run(); //boost::thread(boost::bind(&crow::App::run, app)); return 0; } ``` then compiling with ``` g++...

I was trying the hello world example with VS2022 and Address Sanitizer. When I request 127:0.0.1:18080 in Edge browser, I get an Asan error. Its caused by the request for...

Hi there! When I'm load testing a simple app with the locust ``` #define CROW_JSON_USE_MAP #include "crow.h" int main() { crow::SimpleApp app; CROW_ROUTE(app, "/test/") .name("test") ([](int count) { crow::json::wvalue x({});...

bug