是否可以将 wasm-bindgen 与 webpack 5 一起使用?

Is it possible to use wasm-bindgen with webpack 5?

我遵循了Hello World Guide for wasm-bindgen(我正在使用wasm-bindgen = "0.2.72")。

不幸的是,指南中提到的 npm 包并不是真正最新的。因为我想有一个干净的起点,所以我尝试升级它们。

这是指南中提到的package.json

{
  "scripts": {
    "build": "webpack",
    "serve": "webpack-dev-server"
  },
  "devDependencies": {
    "@wasm-tool/wasm-pack-plugin": "1.0.1",
    "text-encoding": "^0.7.0",
    "html-webpack-plugin": "^3.2.0",
    "webpack": "^4.29.4",
    "webpack-cli": "^3.1.1",
    "webpack-dev-server": "^3.1.0"
  }
}

我删除了 text-encoding(因为我不关心不支持 Edge 的非基于 Chromium 的版本)并升级了 @wasm-tool/wasm-pack-plugin 没有问题:

工作package.json

{
  "scripts": {
    "build": "webpack",
    "serve": "webpack-dev-server"
  },
  "devDependencies": {
    "@wasm-tool/wasm-pack-plugin": "^1.3.3",
    "html-webpack-plugin": "^3.2.0",
    "webpack": "^4.29.4",
    "webpack-cli": "^3.1.1",
    "webpack-dev-server": "^3.1.0"
  }
}

工作webpack.config.js

const path = require('path');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const WasmPackPlugin = require("@wasm-tool/wasm-pack-plugin");

module.exports = {
    entry: './index.js',
    output: {
        path: path.resolve(__dirname, 'dist'),
        filename: 'index.js',
    },
    plugins: [
        new HtmlWebpackPlugin({
            template: 'index.html'
        }),
        new WasmPackPlugin({
            crateDirectory: path.resolve(__dirname, ".")
        })
    ],
    mode: 'development'
};

接下来我做的是升级 html-webpack-pluginwebpack 本身。

错误版本package.json

{
  "scripts": {
    "build": "webpack",
    "serve": "webpack-dev-server"
  },
  "devDependencies": {
    "@wasm-tool/wasm-pack-plugin": "^1.3.3",
    "html-webpack-plugin": "^5.3.1",
    "webpack": "^5.27.1",
    "webpack-cli": "^3.1.1",
    "webpack-dev-server": "^3.1.0"
  }
}

因为我将 webpack 升级到版本 5.27.1 我还必须像这样更改 webpack.config.js

const path = require('path');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const WasmPackPlugin = require("@wasm-tool/wasm-pack-plugin");

module.exports = {
    entry: './index.js',
    output: {
        path: path.resolve(__dirname, 'dist'),
        filename: 'index.js',
    },
    plugins: [
        new HtmlWebpackPlugin({
            template: 'index.html'
        }),
        new WasmPackPlugin({
            crateDirectory: path.resolve(__dirname, ".")
        })
    ],
    experiments: {
        asyncWebAssembly: true
    },
    mode: 'development'
};

现在,当我 运行 npm run serve 构建完成时没有错误,但是当我打开网页时,不再显示任何警报。现在在浏览器控制台中记录了以下错误:

TypeError: _index_bg_wasm__WEBPACK_IMPORTED_MODULE_0__ is undefined
    greet webpack:///./pkg/index_bg.js?:113
    <anonymous> webpack:///./index.js?:4
    promise callback* webpack:///./index.js?:4
    js http://localhost:8080/index.js:18
    __webpack_require__ http://localhost:8080/index.js:366
    <anonymous> http://localhost:8080/index.js:709
    <anonymous> http://localhost:8080/index.js:712

我该怎么做才能解决此问题,以便我可以将 wasm-bindgenwebpack ^5.27.1 一起使用?

感谢任何提示。

补充观察

有趣的是,我发现,即使是不工作的版本,也可以从 index.js 中删除 m => m.greet('World!'),而是像这样从 pkg/index.js 中调用 wasm 函数

import * as wasm from "./index_bg.wasm";
export * from "./index_bg.js";

wasm.greet("World");

当我执行此操作时,控制台中不再出现错误,也不再出现显示“Hello, !”的警报。 (缺少“世界”)被显示出来,所以我认为 .wasm 应该还是没问题的...

更新

我可以使用以下方法使一切恢复正常:

experiments: {
    syncWebAssembly: true
},

然而这已被弃用,所以如果有办法仍然使用 asyncWebAssembly.

那就太好了

我可以通过以下方式加载我的应用程序来让它工作。

我的 webpack 入口配置如下所示:

    entry: {
      wasm: ['./src/bootstrap.js'],
      vendor: ['react', 'react-dom'],
    },

bootstrap 文件如下所示:

import('./index.tsx').catch(e =>
  console.error('Error importing `index.getStringX`:', e),
);

在我的 React 应用程序中,我加载了使用 npm 安装的 wasm 包,如下所示:

import * as wasm from 'myRustWebAssemblyPackedPackage';

我就是这么做的。我没有在 Webpack 中使用任何插件。