An implementation of FizzBuzz in C, compiled to WebAssembly, served by Express.js and run in the browser
npm install
node server.js
App is served on port 8080
- Make changes to fizzbuzz.c
- In
root
directory, runemcc -o public/fizzbuzz.html src/fizzbuzz.c -O3 -s WASM=1 --shell-file src/shell_minimal.html
- Start the server (
node server.js
)