wasmerio / wasmer-java

☕ WebAssembly runtime for Java

Home Page:https://medium.com/wasmer/announcing-the-first-java-library-to-run-webassembly-wasmer-jni-89e319d2ac7c

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

feat: Implement a module API

Hywan opened this issue · comments

A module API allows to:

  • validate,
  • instantiate

Wasm bytes. Something like:

Module module = new Module(bytes);
module.validate();
Instance instance = module.instantiate();