Modern C++20 libraries for building interactive web services
Set of modern C++20 libraries for writing interactive Web-Services
$ brew install thors-anvil && cat /usr/local/opt/thors-anvil/share/doc/example.cpp$ g++ -std=c++20 -I/usr/local/opt/thors-anvil/include myservice.cpp -o myservice -L/usr/local/opt/thors-anvil/lib -lthorvg$ echo 'find_package(thorsanvil REQUIRED)' >> CMakeLists.txt && echo 'target_link_libraries(myapp thorsanvil::lib)' >> CMakeLists.txt$ brew info thors-anvil && ls /usr/local/opt/thors-anvil/include/$ cat > main.cpp << 'EOF'
#include <thorsanvil/Serialize.h>
int main() { /* use thors-anvil */ }
EOF