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

问题描述 投票:0回答:2

我遵循了Hello World指南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
(因为我不关心不支持非Chromium版本的Edge)并升级了
@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-plugin
webpack
本身。

有错误的版本的

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-bindgen
webpack ^5.27.1
一起使用?

我很感谢任何提示。

额外观察

有趣的是,我发现,即使使用不工作的版本,也可以从

m => m.greet('World!')
中删除
index.js
并从
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 rust webassembly wasm-bindgen wasm-pack
2个回答
1
投票

是的,现在已正式支持,正如 2021 年 8 月 10 日向主分支承诺的那样。请注意,截至 2022 年 12 月,如果您从 wasm-bindgen GitHub 进行克隆,则需要从 wasm-bindgen 根目录复制示例,请参阅相关问题。在继续 npm i

 之前,不要忘记 
npm run serve


0
投票
我能够通过以下方式加载我的应用程序来使其工作。

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

entry: { wasm: ['./src/bootstrap.js'], vendor: ['react', 'react-dom'], },
引导文件如下所示:

import('./index.tsx').catch(e => console.error('Error importing `index.getStringX`:', e), );
在我的 React 应用程序中,我加载使用 npm 安装的 wasm 包,如下所示:

import * as wasm from 'myRustWebAssemblyPackedPackage';
这就是我所做的一切。我在 Webpack 中没有使用任何插件。

© www.soinside.com 2019 - 2024. All rights reserved.