vite-plugin-wasm

Add WebAssembly ESM integration (aka. Webpack's `asyncWebAssembly`) to Vite and support `wasm-pack` generated modules.

MIT 16 个版本
安装
npm install vite-plugin-wasm
yarn add vite-plugin-wasm
pnpm add vite-plugin-wasm
bun add vite-plugin-wasm
README

vite-plugin-wasm

Test Status npm Commitizen friendly License

Add WebAssembly ESM integration (aka. Webpack's asyncWebAssembly) to Vite and support wasm-pack generated modules.

Installation

This plugin supports Vite 2.x to 8.x. Just install it:

yarn add -D vite-plugin-wasm

Usage

You also need the vite-plugin-top-level-await plugin unless you target very modern browsers only (i.e. set build.target to esnext).

import wasm from "vite-plugin-wasm";
import topLevelAwait from "vite-plugin-top-level-await";

export default defineConfig({
  plugins: [
    wasm(),
    topLevelAwait()
  ]
});

If you are getting ESBuild errors of WASM files (In the format No loader is configured for ".wasm" files: node_modules/somepackage/somefile.wasm) with Vite < 3.0.3, please upgrade your Vite to >= 3.0.3 or upgrade this plugin to >= 3.1.0. A workaround is adding the corresponding imported module within node_modules to optimizeDeps.exclude, e.g.:

export default defineConfig({
  optimizeDeps: {
    exclude: [
      "@syntect/wasm"
    ]
  }
});

Web Worker

To use this plugin in Web Workers. Add it (and vite-plugin-top-level-await if necessary) to worker.plugins. To support Firefox, don't use ES workers. leave worker.format default and use vite-plugin-top-level-await >= 1.4.0 (see also here):

export default defineConfig({
  plugins: [
    wasm(),
    topLevelAwait()
  ],
  worker: {
    // Not needed with vite-plugin-top-level-await >= 1.3.0
    // format: "es",
    plugins: [
      wasm(),
      topLevelAwait()
    ]
  }
});

Notes

TypeScript typing is broken. Since we can't declare a module with Record<string, any> as its named export map, your import ... from "./module.wasm"; will still get Vite's built-in typing, but the transformed code is fine. Thus, you can simply use an asterisk import import * as wasmModule from "./module.wasm" and type assertion (you have typing for your WASM files, right?).

版本列表
3.6.0 2026-03-15
3.5.0 2025-07-09
3.4.1 2024-12-20
3.4.0 2024-12-19
3.3.0 2023-12-13
3.2.2 2023-03-07
3.2.1 2023-02-05
3.1.1 2023-01-03
3.1.0 2022-10-22
3.0.0 2022-09-22
2.1.0 2022-07-20
2.0.0 2022-07-19
1.0.1 2022-06-29
1.0.0 2022-05-27
0.0.2 2022-03-05
0.0.1 2022-03-04