wasmly 0.2.0

programatically build a web assembly module
Documentation
1
2
3
4
5
6
7
8
9
10
<script>
  fetch("out.wasm")
    .then(response => response.arrayBuffer())
    .then(bytes => {
      return WebAssembly.instantiate(bytes);
    })
    .then(results => {
      console.log(results.instance.exports.main());
    });
</script>