This repo demonstrates a simple full-stack setup:
- Frontend: TypeScript + Web Components, built with
tscintofrontend/dist. - Backend: C++ Crow server that serves the static files from
frontend/dist.
- Node.js (16+) and npm
- CMake (3.16+)
- A C++17-capable compiler (g++/clang)
- Docker (optional)
- Build frontend
cd frontend
npm install
npm run build
cd ..