Skip to content

Latest commit

 

History

History
19 lines (12 loc) · 616 Bytes

README.md

File metadata and controls

19 lines (12 loc) · 616 Bytes

Yew Examples

Running the examples

To start an example, enter its directory and start it with cargo-web:

cargo web start --features std_web

To run an optimized build instead of a debug build use:

cargo web start --release --features std_web

The wasm32-unknown-unknown target will be used by default, which is Rust's native WebAssembly target. The Emscripten-based wasm32-unknown-emscripten and asmjs-unknown-emscripten targets are also supported if you tell the cargo-web to build for them using the --target parameter.