Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kazhuu/wasm-mazes
Generate mazes with Rust and WebAssembly purely on the frontend
https://github.com/kazhuu/wasm-mazes
maze maze-generator rust wasm webassembly
Last synced: about 11 hours ago
JSON representation
Generate mazes with Rust and WebAssembly purely on the frontend
- Host: GitHub
- URL: https://github.com/kazhuu/wasm-mazes
- Owner: Kazhuu
- License: mit
- Created: 2022-08-06T18:53:14.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-08-13T08:10:50.000Z (about 2 years ago)
- Last Synced: 2024-05-01T18:20:19.910Z (6 months ago)
- Topics: maze, maze-generator, rust, wasm, webassembly
- Language: Rust
- Homepage: http://mauri.codes/wasm-mazes/
- Size: 3.08 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# wasm-mazes
Generate mazes with WebAssembly directly in your browser to pdf files for easy
printing, no server needed.Site is online [here](http://mauri.codes/wasm-mazes/).
## How to run in debug mode
Install [Rust](https://www.rust-lang.org/tools/install),
[wasmpack](https://github.com/rustwasm/wasm-pack) and
[Node.js](https://nodejs.org/en/) with npm.Then following command will build the project and open it in a new browser tab.
Auto-reloads when the project changes.```sh
npm start
```## How to build in release mode
Builds the project and places it into the `dist` folder.
```sh
npm run build
```