Hosted at rusty-games.eu
An implementation of the variation of breakout game in rust using webassembly.
Go to the webpage and play.
The Rust toolchain rustup
, rustc
, cargo
. A tool to generate WebAssembly: wasm-pack
. A package manager for JavaScript npm
.
- Front-end:
- start locally:
npm run start
from thewww
directory - build release version:
npm run build
from thewww
directory - build development version:
npm run build-dev
from thewww
directory - remove build files:
npm run clean
from thewww
directory
- start locally:
- Web assembly:
wasm-pack build
from the main directory
- Back-end:
cargo build
from theapi
directory