2018-03-03 07:11:30 +03:00
|
|
|
# Examples
|
|
|
|
|
|
|
|
This directory contains a number of examples of the `#[wasm_bindgen]` macro and
|
2018-04-17 23:51:01 +03:00
|
|
|
how to display them in the browser. Each directory contains a README with a link
|
|
|
|
to https://webassembly.studio so you can also explore the example online
|
|
|
|
(apologies if they're out of sync!), and each directory also contains a
|
|
|
|
`build.sh` which assembles all the relevant files locally. If you open up
|
|
|
|
`index.html` in a web browser you should be able to see everything in action
|
|
|
|
when using `build.sh`!
|
2018-03-03 07:11:30 +03:00
|
|
|
|
|
|
|
The examples here are:
|
|
|
|
|
|
|
|
* `hello_world` - the "hello world" of `#[wasm_bindgen]`, aka throwing up a
|
|
|
|
dialog greeting you
|
2018-03-09 21:25:19 +03:00
|
|
|
* `console_log` - a showcase of `#[wasm_bindgen]` importing classes and how to
|
|
|
|
bind `console.log`
|
2018-03-21 20:03:40 +03:00
|
|
|
* `math` - like `console_log` except showing how to import Math-related
|
|
|
|
functions instead
|
2018-03-21 18:26:00 +03:00
|
|
|
* `dom` - an example of accessing the global `document` object and appending
|
|
|
|
HTML to it
|
2018-03-03 07:19:39 +03:00
|
|
|
* `smorgasboard` - a bunch of features all thrown into one, showing off the
|
|
|
|
various capabilities of the `#[wasm_bindgen]` macro and what you can do with
|
|
|
|
it from JS
|
2018-03-21 20:21:21 +03:00
|
|
|
* `performance` - how to import APIs like `performance.now()` and time various
|
|
|
|
operations in Rust
|
2018-03-23 03:39:48 +03:00
|
|
|
* `wasm-in-wasm` - how to interact with namespaced APIs like
|
|
|
|
`WebAssembly.Module` and shows off creation of a WebAssembly module from Rust
|
2018-04-06 18:49:21 +03:00
|
|
|
* `closures` - an example of how to invoke functions like `setInterval` or use
|
|
|
|
the `onclick` property in conjunction with closures.
|
2018-04-19 17:20:35 +03:00
|
|
|
* `no_modules` - an example of how to use the `--no-modules` flag to
|
|
|
|
the `wasm-bindgen` CLI tool
|
2018-04-21 08:38:22 +03:00
|
|
|
* `add` - an example of generating a tiny wasm binary, one that only adds two
|
|
|
|
numbers.
|
2018-04-30 23:22:46 +03:00
|
|
|
* `asm.js` - an example of using the `wasm2asm` tool from [binaryen] to convert
|
|
|
|
the generated WebAssembly to normal JS
|
2018-05-22 20:34:41 +03:00
|
|
|
* `char` - an example of passing the rust `char` type to and from the js `string` type
|
2018-05-23 22:06:49 +03:00
|
|
|
* `import_js` - an example of importing local JS functionality into a crate
|
2018-06-15 19:20:56 +03:00
|
|
|
* `comments` - an example of how Rust comments are copied into js bindings
|
2018-04-30 23:22:46 +03:00
|
|
|
|
|
|
|
[binaryen]: https://github.com/WebAssembly/binaryen
|