最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Error instantiating WASM module: "module is not an object or function" - Stack Overflow

programmeradmin3浏览0评论

I'm trying to instantiate a .wasm file locally in node.js. The goal is to run the binary locally and reproduce the functionalities of the web page. Here's my minimum reproducible example:

const fetch = require("node-fetch");

const importObject = {
  imports: {
    imported_func: function(arg) {
      console.log(arg);
    }
  }
};

fetch('.wasm').then(response =>
  response.arrayBuffer()
).then(bytes => {
  let mod = new WebAssembly.Module(bytes);
  let instance = new WebAssembly.Instance(mod, importObject);
  instance.exports.exported_func();
})

The error I get is:

TypeError: WebAssembly.Instance(): Import #0 module="wasi_unstable" error: module is not an object or function

I saw some questions with similar problems but no real solutions were provided. This is my first time working with wasm so I'm pretty lost.

I'm trying to instantiate a .wasm file locally in node.js. The goal is to run the binary locally and reproduce the functionalities of the web page. Here's my minimum reproducible example:

const fetch = require("node-fetch");

const importObject = {
  imports: {
    imported_func: function(arg) {
      console.log(arg);
    }
  }
};

fetch('https://www.supremenewyork./ticket.wasm').then(response =>
  response.arrayBuffer()
).then(bytes => {
  let mod = new WebAssembly.Module(bytes);
  let instance = new WebAssembly.Instance(mod, importObject);
  instance.exports.exported_func();
})

The error I get is:

TypeError: WebAssembly.Instance(): Import #0 module="wasi_unstable" error: module is not an object or function

I saw some questions with similar problems but no real solutions were provided. This is my first time working with wasm so I'm pretty lost.

Share Improve this question edited Oct 2, 2022 at 0:58 Heretic Monkey 12.1k7 gold badges61 silver badges131 bronze badges asked Jun 4, 2020 at 12:11 Lucca BaumgärtnerLucca Baumgärtner 2071 gold badge3 silver badges8 bronze badges
Add a ment  | 

3 Answers 3

Reset to default 3

Your module seems to depend on the wasi_unstable API. If you want to load it you will need an implementation of that API.

To see exactly what imports you module needs you can use wasm2wat or wasmdis tools from wabt and binaryen projects respectively.

If you built your wasm module with emscripten then the remended practice is to have the emscripten generate JS to that implenents these APIs and takes case of loading the module for you.

If you build your wasm module with the wasi-sdk then you need some kind of web polyfill for the WASI APIs.

This will make the error go away:

const importObject = {
  imports: {
    imported_func: function(arg) {
      console.log(arg);
    },
    wasi_unstable: () => {}
  }
};

Try this one

const importObject = {
    wasi_unstable: {
        imported_func: function(args) {
            console.log(args);
        }
    }
};
发布评论

评论列表(0)

  1. 暂无评论