wasm-linker-js
wasm-linker-js copied to clipboard
A simple WebAssembly Linker in JavaScript
There is a [browser example](https://github.com/deislabs/wasm-linker-js/blob/main/examples/index.html) in this repository. While functional, the implementation is far from ideal - the linker does not currently expose streaming methods, and the WebPack configuration for...
When instantiating a linker with Asyncify enabled, all modules linked and instantiated with the linker will be instantiated using Asyncify's JavaScript wrapper. We should allow a per-instance (and by extension...
In the current implementation of the linker, when duplicate module names, or duplicate import items are defined, the last one defined always takes precedence - see behavior in the tests:...