The ultimate web framework for C++, inspired by the likes of Flask and Express.js
Go to file
2022-11-04 20:16:35 +01:00
include/webcxx Fix bug 2022-11-03 21:58:25 +01:00
src Allow -1 characters while reading a file 2022-11-04 20:16:35 +01:00
.gitignore Add .vscode folder to gitignore 2022-11-03 21:45:45 +01:00
CMakeLists.txt Ready. Set. Go! 2022-10-07 16:24:12 +02:00
LICENSE Add LICENSE 2022-10-07 14:27:41 +00:00
README.md Fix another typo in README.md 2022-11-04 19:11:09 +00:00

webcxx

A simple web framework similar to Flask, but for C++.

Warning

This project is in super-alpha state and should not be used in production. It's probably filled with bugs and security vulnerabilities. You have been warned.

How to use

See webcxx-example.

How to add webcxx to your project (with CMake)

Add this repo as a submodule.

Append the following lines to your CMakeLists.txt:

include(webcxx/CMakeLists.txt)

target_include_directories(<your-executable> PUBLIC ${webcxx_include})
target_link_libraries(<your-executable> PUBLIC ${webcxx_libs})