wasm-bindgen/examples/asm.js
2018-09-03 13:56:55 -04:00
..
src Remove use_extern_macros features 2018-08-19 14:33:01 -07:00
.gitignore Add an example of wasm2asm and wasm-bindgen 2018-04-30 13:29:34 -07:00
build.sh Remove --wasm2js flag entirely 2018-09-03 13:56:55 -04:00
Cargo.toml Add an example of wasm2asm and wasm-bindgen 2018-04-30 13:29:34 -07:00
index.html Add an example of wasm2asm and wasm-bindgen 2018-04-30 13:29:34 -07:00
index.js Add an example of wasm2asm and wasm-bindgen 2018-04-30 13:29:34 -07:00
package.json feat: bump webpack 2018-06-06 10:07:02 +02:00
README.md Remove --wasm2js flag entirely 2018-09-03 13:56:55 -04:00
webpack.config.js Applied eslint from main .eslintrc to examples (#418) 2018-07-08 01:02:10 -05:00

WebAssembly to asm.js

This directory is an example of using binaryen's wasm2js tool to convert the wasm output of wasm-bindgen to a normal JS file that can be executed like asm.js.

You can build the example locally with:

$ ./build.sh

When opened in a web browser this should print "Hello, World!" to the console.

Note that the wasm2js tool is still pretty early days so there's likely to be a number of bugs to run into or work around. If any are encountered though please feel free to report them upstream!