917 B
917 B
About
Tweak of the great Wasm tutorial here : tutorials
Links
wasm-pack
wasm-bindgen
for communicating between WebAssembly and JavaScript.console_error_panic_hook
for logging panic messages to the developer console.wee_alloc
, an allocator optimized for small code size.
Note for myself
Crée l'arborescence www
$ wasm-pack build
$ npm init wasm-app www
$ cd www/
$ npm install
Puis :
$ vim www/package.json
--
"dependencies": {
"wasm-game-of-life": "file:../pkg", // Add this line!
--
Puis :
$ vim www/index.js
--
import * as wasm from "wasm-game-of-life";
(…)
--