wasm-bindgen/examples
2018-03-29 08:59:08 -07:00
..
console_log Fix compilation of examples on Travis 2018-03-29 08:59:08 -07:00
dom Fix compilation of examples on Travis 2018-03-29 08:59:08 -07:00
hello_world Fix compilation of examples on Travis 2018-03-29 08:59:08 -07:00
math Fix compilation of examples on Travis 2018-03-29 08:59:08 -07:00
performance Fix compilation of examples on Travis 2018-03-29 08:59:08 -07:00
smorgasboard Fix compilation of examples on Travis 2018-03-29 08:59:08 -07:00
wasm-in-wasm Fix compilation of examples on Travis 2018-03-29 08:59:08 -07:00
README.md Add an example of namespaced APIs 2018-03-22 17:39:48 -07:00

Examples

This directory contains a number of examples of the #[wasm_bindgen] macro and how to display them in the browser. Each directory should contain a build.sh which assembles all the relevant files, and then if you open up index.html in a web browser you should be able to see everything in action!

The examples here are:

  • hello_world - the "hello world" of #[wasm_bindgen], aka throwing up a dialog greeting you
  • console_log - a showcase of #[wasm_bindgen] importing classes and how to bind console.log
  • math - like console_log except showing how to import Math-related functions instead
  • dom - an example of accessing the global document object and appending HTML to it
  • 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
  • performance - how to import APIs like performance.now() and time various operations in Rust
  • wasm-in-wasm - how to interact with namespaced APIs like WebAssembly.Module and shows off creation of a WebAssembly module from Rust