examples: Add an example of using duck-typed interfaces

This commit is contained in:
Nick Fitzgerald
2018-09-11 16:29:25 -07:00
parent 27a7008764
commit a311c29f1d
11 changed files with 121 additions and 0 deletions

View File

@ -0,0 +1,15 @@
#!/bin/sh
# For more coments about what's going on here, see the `hello_world` example
set -ex
cd "$(dirname $0)"
cargo +nightly build --target wasm32-unknown-unknown
cargo +nightly run --manifest-path ../../crates/cli/Cargo.toml \
--bin wasm-bindgen -- \
../../target/wasm32-unknown-unknown/debug/rust_duck_typed_interfaces.wasm --out-dir .
npm install
npm run serve