Starter project. A web server and client fully made with C++/WebAssembly. A simple CMake configuration describes how to build and run everything.
Features:
- Client uses a C++ virtual dom.
- Server runs on Google cloud functions.
Demo: here
- Build everything using CMake:
mkdir build
cd build
emcmake cmake ..
make
make run
- Deploy the server locally using the emulator:
make deploy
- Serve the client locally and open it using a web browser:
make run