从这篇文章https://asquera.de/blog/2018-10-01/webassembly-and-wasm-bindgen/我发现我们可以运行wasm-bindgen target/wasm32-unknown-unknown/release/qr_wasm.wasm --out-dir ./dist --no-modules --no-typescript
以创建 wasm 和 js 文件而无需运行wasm-pack build
(它会安装 wasm-bindgen 不管我以前安装了一个,使它有点慢)这对我来说似乎更灵活,但是当我运行wasm-bindgen xxx
它时说:zsh: command not found: wasm-bindgen
我用谷歌搜索了它,但似乎没有人遇到过这个问题。我的项目中也有cargo install
wasm-bindgen 和 wasm-bindgen-cli。