WebAssembly 效能優化實戰:從Rust到瀏覽器
性能优化
為什麼 2026 年必須關注 WebAssembly?
WebAssembly(WASM)已從瀏覽器實驗性技術成長為全堆疊執行時標準。2026 年,所有主流瀏覽器均支援 WASM GC 提案與 Component Model,Cloudflare Workers、Deno Deploy、Vercel Edge Functions 全面擁抱 WASM,WASI Preview 2 讓伺服端 WASM 進入生產可用階段。
WebAssembly 採用趨勢
| 維度 | 2022 | 2024 | 2026 |
|---|---|---|---|
| 瀏覽器支援率 | ~93% | ~97% | ~99% |
| WASM 執行時 | 3 個主流 | 6 個主流 | 10+ 主流 |
| WASI 規範 | Preview 1 | Preview 2 RC | Preview 2 穩定 |
| NPM WASM 套件數量 | 500+ | 3000+ | 12000+ |
| 邊緣運算 WASM 採用 | 實驗性 | 快速增長 | 主流選擇 |
WASM 的核心價值主張
- 接近原生效能:比 JavaScript 快 10-100 倍(計算密集型任務)
- 語言無關性:Rust、C++、Go、AssemblyScript 均可編譯為 WASM
- 安全沙箱:線性記憶體模型天然隔離,無越界存取
- 可移植性:一次編譯,瀏覽器/伺服端/嵌入式全平台執行
- Component Model:2026 年標準化的模組互操作協定
💡 使用 Base64 編解碼 工具處理 WASM 二元模組的編碼傳輸。
WebAssembly 運作原理
編譯管線全貌
WASM 的編譯管線分為三個階段:源語言 → WAT/WASM 位元組碼 → 機器碼。
┌──────────┐ ┌──────────────┐ ┌──────────────┐ ┌──────────┐
│ Rust/C++ │───▶│ LLVM IR │───▶│ WASM 位元組碼│───▶│ 機器碼 │
│ Go/AS │ │ (中間表示) │ │ (.wasm) │ │ (JIT/AOT)│
└──────────┘ └──────────────┘ └──────────────┘ └──────────┘
│
▼
┌──────────────┐
│ WAT 文字格式 │
│ (可讀 S-expr)│
└──────────────┘
WAT 文字格式範例
(module
(func $add (param $a i32) (param $b i32) (result i32)
local.get $a
local.get $b
i32.add
)
(export "add" (func $add))
)
WASM 線性記憶體模型
WASM 使用連續的可增長線性記憶體,以頁(64KB)為單位分配:
#[wasm_bindgen]
pub fn process_buffer(ptr: *mut u8, len: usize) {
let slice = unsafe { std::slice::from_raw_parts_mut(ptr, len) };
for byte in slice.iter_mut() {
*byte = byte.wrapping_add(1);
}
}
const memory = new WebAssembly.Memory({ initial: 1 }); // 1 頁 = 64KB
const buffer = new Uint8Array(memory.buffer);
buffer[0] = 42;
wasmInstance.exports.process_buffer(buffer.byteOffset, buffer.length);
console.log(buffer[0]); // 43
Rust 到 WASM:工具鏈實戰
專案初始化
# Cargo.toml
[package]
name = "wasm-perf-demo"
version = "0.1.0"
edition = "2021"
[lib]
crate-type = ["cdylib"]
[dependencies]
wasm-bindgen = "0.2"
js-sys = "0.3"
web-sys = { version = "0.3", features = ["Window", "Performance"] }
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
strip = true
wasm-pack 建置流程
# 安裝 wasm-pack
cargo install wasm-pack
# 建置目標為瀏覽器
wasm-pack build --target web --release
# 建置目標為 Node.js / Bundler
wasm-pack build --target bundler --release
# 建置並產生 NPM 套件
wasm-pack build --target web --release --scope myorg
基本 Rust → WASM 函式
use wasm_bindgen::prelude::*;
#[wasm_bindgen]
pub fn fibonacci(n: u32) -> u64 {
if n <= 1 {
return n as u64;
}
let mut a = 0u64;
let mut b = 1u64;
for _ in 2..=n {
let temp = a + b;
a = b;
b = temp;
}
b
}
#[wasm_bindgen]
pub fn blur_image(data: &mut [u8], width: u32, height: u32, radius: u32) {
let w = width as usize;
let h = height as usize;
let r = radius as usize;
let mut temp = vec![0u8; data.len()];
for y in r..(h - r) {
for x in r..(w - r) {
let mut sum = 0u32;
let mut count = 0u32;
for dy in -(r as i32)..=(r as i32) {
for dx in -(r as i32)..=(r as i32) {
let idx = ((y as i32 + dy) as usize) * w + ((x as i32 + dx) as usize);
sum += data[idx] as u32;
count += 1;
}
}
temp[y * w + x] = (sum / count) as u8;
}
}
data.copy_from_slice(&temp);
}
wasm-bindgen:JavaScript 互操作
基本型別對應
| Rust 型別 | JavaScript 型別 | 說明 |
|---|---|---|
i32/u32 |
Number |
32 位元整數 |
i64/u64 |
BigInt |
64 位元整數(需啟用 BigInt 支援) |
f32/f64 |
Number |
浮點數 |
bool |
Boolean |
布林值 |
&str / String |
String |
字串(涉及記憶體拷貝) |
&[u8] / Vec<u8> |
Uint8Array |
位元組陣列 |
js_sys::Object |
Object |
JS 物件參照 |
從 Rust 呼叫 JavaScript
use wasm_bindgen::prelude::*;
use js_sys::Math;
use web_sys::window;
#[wasm_bindgen]
pub fn call_js_from_rust() -> f64 {
let rand_val = Math::random();
let perf = window().unwrap().performance().unwrap();
let now = perf.now();
rand_val * now
}
#[wasm_bindgen]
extern "C" {
#[wasm_bindgen(js_namespace = console)]
fn log(s: &str);
#[wasm_bindgen(js_namespace = Math)]
fn floor(x: f64) -> f64;
}
#[wasm_bindgen]
pub fn rust_with_js_interop(value: f64) -> f64 {
log(&format!("Processing value: {}", value));
floor(value * 3.14159) / 2.0
}
從 JavaScript 呼叫 Rust
import init, { fibonacci, blur_image, rust_with_js_interop } from './wasm_perf_demo.js';
async function runWasm() {
await init();
console.log('fibonacci(40) =', fibonacci(40));
const imageData = new Uint8Array(800 * 600 * 4);
blur_image(imageData, 800, 600, 3);
const result = rust_with_js_interop(42.5);
console.log('interop result:', result);
}
runWasm();
傳遞複雜結構體
use wasm_bindgen::prelude::*;
use serde::{Serialize, Deserialize};
#[wasm_bindgen]
#[derive(Serialize, Deserialize)]
pub struct ImageMetadata {
width: u32,
height: u32,
channels: u8,
format: String,
}
#[wasm_bindgen]
impl ImageMetadata {
#[wasm_bindgen(constructor)]
pub fn new(width: u32, height: u32, channels: u8, format: String) -> Self {
Self { width, height, channels, format }
}
pub fn total_pixels(&self) -> u32 {
self.width * self.height
}
pub fn byte_size(&self) -> usize {
(self.width * self.height * self.channels as u32) as usize
}
}
記憶體管理深度解析
線性記憶體與自動增長
const memory = new WebAssembly.Memory({
initial: 1, // 初始 1 頁 = 64KB
maximum: 256, // 最大 256 頁 = 16MB
shared: false // 設為 true 啟用 SharedArrayBuffer
});
console.log('初始記憶體大小:', memory.buffer.byteLength); // 65536
// WASM 內部呼叫 memory.grow 自動擴展
// 每次增長 1 頁 = 64KB
SharedArrayBuffer 與多執行緒
// 主執行緒:建立共享記憶體
const sharedMemory = new WebAssembly.Memory({
initial: 10,
maximum: 100,
shared: true
});
const sharedBuffer = new SharedArrayBuffer(1024);
const sharedArray = new Int32Array(sharedBuffer);
// Worker 執行緒:存取共享記憶體
const worker = new Worker('wasm-worker.js');
worker.postMessage({ memory: sharedMemory, buffer: sharedBuffer });
use wasm_bindgen::prelude::*;
use std::sync::atomic::{AtomicI32, Ordering};
static COUNTER: AtomicI32 = AtomicI32::new(0);
#[wasm_bindgen]
pub fn increment_shared_counter() -> i32 {
COUNTER.fetch_add(1, Ordering::SeqCst) + 1
}
#[wasm_bindgen]
pub fn get_shared_counter() -> i32 {
COUNTER.load(Ordering::SeqCst)
}
避免記憶體洩漏的最佳實踐
use wasm_bindgen::prelude::*;
#[wasm_bindgen]
pub struct ProcessResult {
data: Vec<u8>,
checksum: u32,
}
#[wasm_bindgen]
impl ProcessResult {
pub fn data(&self) -> &[u8] {
&self.data
}
pub fn checksum(&self) -> u32 {
self.checksum
}
}
#[wasm_bindgen]
pub fn process_without_leak(input: &[u8]) -> ProcessResult {
let checksum = input.iter().fold(0u32, |acc, &b| acc.wrapping_add(b as u32));
let data = input.iter().map(|&b| b.wrapping_mul(2)).collect();
ProcessResult { data, checksum }
}
💡 使用 JSON 格式化 工具檢視 WASM 記憶體佈局的 JSON 除錯資訊。
效能基準測試:WASM vs JavaScript
影像處理基準測試
use wasm_bindgen::prelude::*;
#[wasm_bindgen]
pub fn wasm_grayscale(data: &mut [u8]) {
for pixel in data.chunks_exact_mut(4) {
let gray = (pixel[0] as f32 * 0.299
+ pixel[1] as f32 * 0.587
+ pixel[2] as f32 * 0.114) as u8;
pixel[0] = gray;
pixel[1] = gray;
pixel[2] = gray;
}
}
#[wasm_bindgen]
pub fn wasm_sobel_edge(data: &mut [u8], width: u32, height: u32) {
let w = width as usize;
let h = height as usize;
let mut output = vec![0u8; data.len()];
for y in 1..(h - 1) {
for x in 1..(w - 1) {
let idx = |dx: i32, dy: i32| -> u8 {
let nx = (x as i32 + dx) as usize;
let ny = (y as i32 + dy) as usize;
data[(ny * w + nx) * 4]
};
let gx = -idx(-1,-1) + idx(1,-1) - 2*idx(-1,0) + 2*idx(1,0) - idx(-1,1) + idx(1,1);
let gy = -idx(-1,-1) - 2*idx(0,-1) - idx(1,-1) + idx(-1,1) + 2*idx(0,1) + idx(1,1);
let magnitude = ((gx as i32).pow(2) + (gy as i32).pow(2)) as f64;
let val = (magnitude.sqrt().min(255.0)) as u8;
let out_idx = (y * w + x) * 4;
output[out_idx] = val;
output[out_idx + 1] = val;
output[out_idx + 2] = val;
output[out_idx + 3] = 255;
}
}
data.copy_from_slice(&output);
}
JavaScript 對照實作
function jsGrayscale(data) {
for (let i = 0; i < data.length; i += 4) {
const gray = data[i] * 0.299 + data[i+1] * 0.587 + data[i+2] * 0.114;
data[i] = data[i+1] = data[i+2] = gray;
}
}
基準測試結果對比
| 任務 | JavaScript | WebAssembly | 加速比 |
|---|---|---|---|
| 灰階轉換 (4K 影像) | 45ms | 6ms | 7.5x |
| Sobel 邊緣偵測 | 120ms | 15ms | 8.0x |
| SHA-256 雜湊 (10MB) | 380ms | 42ms | 9.0x |
| Gzip 壓縮 (10MB) | 520ms | 85ms | 6.1x |
| JSON 解析 (5MB) | 28ms | 22ms | 1.3x |
| DOM 操作 (1000 節點) | 12ms | 45ms | 0.27x |
關鍵發現:WASM 在計算密集型任務中優勢明顯,但在 DOM 操作中因跨邊界呼叫開銷反而更慢。
Web Worker 平行化
WASM + Web Worker 架構
<!DOCTYPE html>
<html>
<head>
<title>WASM 平行處理</title>
</head>
<body>
<canvas id="canvas" width="1920" height="1080"></canvas>
<script type="module">
import init, { wasm_grayscale } from './wasm_perf_demo.js';
const NUM_WORKERS = navigator.hardwareConcurrency || 4;
const workers = [];
for (let i = 0; i < NUM_WORKERS; i++) {
workers.push(new Worker('./wasm-worker.js', { type: 'module' }));
}
async function parallelProcess(imageData) {
const chunkSize = Math.ceil(imageData.length / NUM_WORKERS);
const promises = workers.map((worker, i) => {
const start = i * chunkSize;
const end = Math.min(start + chunkSize, imageData.length);
const chunk = imageData.slice(start, end);
return new Promise(resolve => {
worker.onmessage = e => resolve(e.data);
worker.postMessage({ chunk, start, end }, [chunk.buffer]);
});
});
const results = await Promise.all(promises);
return new Uint8Array(results.flatMap(r => Array.from(r)));
}
</script>
</body>
</html>
Worker 執行緒實作
// wasm-worker.js
import init, { wasm_grayscale, wasm_sobel_edge } from './wasm_perf_demo.js';
let wasmReady = false;
self.onmessage = async function(e) {
if (!wasmReady) {
await init();
wasmReady = true;
}
const { chunk, start, end } = e.data;
const result = new Uint8Array(chunk);
wasm_grayscale(result);
self.postMessage(result, [result.buffer]);
};
Rust 側平行計算
use wasm_bindgen::prelude::*;
#[wasm_bindgen]
pub fn parallel_histogram(data: &[u8], num_bins: usize) -> Vec<u32> {
let mut histogram = vec![0u32; num_bins];
let bin_size = 256.0 / num_bins as f64;
for &byte in data {
let bin = (byte as f64 / bin_size).floor() as usize;
let bin = bin.min(num_bins - 1);
histogram[bin] += 1;
}
histogram
}
#[wasm_bindgen]
pub fn parallel_sort_chunk(data: &mut [u8]) {
data.sort_unstable();
}
WASI:伺服端 WebAssembly
WASI Preview 2 概覽
# Cargo.toml - WASI 目標
[package]
name = "wasi-server-demo"
version = "0.1.0"
edition = "2021"
[dependencies]
wasi = "0.13"
[lib]
crate-type = ["cdylib"]
use wasi::http::{IncomingRequest, OutgoingResponse, ResponseOutparam};
use wasi::io::streams::StreamError;
#[export_name = "wasi:http/incoming-handler"]
pub extern "C" fn handle_request(
request: IncomingRequest,
response_out: ResponseOutparam,
) {
let response = OutgoingResponse::new(200);
let body = response.body().unwrap();
let write = body.write().unwrap();
write.blocking_write_and_flush(b"Hello from WASM!").unwrap();
ResponseOutparam::set(response_out, Ok(response));
}
WASM 執行時對比
| 執行時 | 語言 | WASI 支援 | 適用場景 |
|---|---|---|---|
| Wasmtime | Rust | Preview 2 | 通用伺服端 |
| Wasmer | Rust | Preview 2 | 高效能嵌入式 |
| V8 | C++ | 部分支援 | 瀏覽器/Node.js |
| WasmEdge | C++ | Preview 2 | 邊緣運算/AI |
| wazero | Go | Preview 2 | 純 Go 嵌入式 |
常見錯誤與除錯
編譯期常見錯誤
// ❌ 錯誤:生命週期不匹配
#[wasm_bindgen]
pub fn borrow_issue(data: &[u8]) -> &[u8] {
&data[0..10] // 編譯錯誤:返回借用超出輸入生命週期
}
// ✅ 修復:返回擁有所有權的 Vec
#[wasm_bindgen]
pub fn borrow_fix(data: &[u8]) -> Vec<u8> {
data[0..10].to_vec()
}
執行時除錯技巧
// 啟用 WASM 除錯日誌
const wasmInstance = await WebAssembly.instantiate(wasmModule, {
env: {
__console_log: (ptr, len) => {
const message = new TextDecoder().decode(
new Uint8Array(wasmInstance.exports.memory.buffer, ptr, len)
);
console.log('[WASM]', message);
}
}
});
use wasm_bindgen::prelude::*;
#[wasm_bindgen]
extern "C" {
#[wasm_bindgen(js_namespace = console)]
fn log(s: &str);
}
macro_rules! wasm_log {
($($arg:tt)*) => {
log(&format!($($arg)*))
};
}
#[wasm_bindgen]
pub fn debuggable_function(input: &[u8]) -> Vec<u8> {
wasm_log!("Input length: {}", input.len());
let result: Vec<u8> = input.iter().map(|&b| b.wrapping_add(1)).collect();
wasm_log!("Output length: {}", result.len());
result
}
常見陷阱與解決方案
| 陷阱 | 症狀 | 解決方案 |
|---|---|---|
| 頻繁字串傳遞 | 效能驟降 | 使用 js_sys::JsString 或共享記憶體 |
| 大陣列拷貝 | 記憶體翻倍 | 傳遞指標 + 長度,直接操作 WASM 記憶體 |
| panic 處理 | 靜默崩潰 | 設定 console_error_panic_hook |
| 未釋放記憶體 | 記憶體持續增長 | 實作 Drop trait 或手動管理 |
| BigInt 開銷 | 64 位元整數慢 | 儘量使用 u32/i32 |
進階優化技巧
二元體積優化
# Cargo.toml - 體積優化設定
[profile.release]
opt-level = "z" # 優化體積而非速度
lto = true # 連結時優化
codegen-units = 1 # 單編譯單元,更好優化
strip = true # 去除除錯符號
panic = "abort" # abort 替代 unwind,減小體積
[dependencies]
wasm-bindgen = { version = "0.2", features = ["enable-minimal-size"] }
# 使用 wasm-opt 進一步優化
wasm-opt -Oz -o output.wasm input.wasm
# 使用 wasm-snip 去除未使用函式
wasm-snip --snip-rust-panicking-code input.wasm -o output.wasm
# 體積對比
# 預設建置: ~150KB
# opt-level=z: ~85KB
# + wasm-opt: ~62KB
# + wasm-snip: ~48KB
SIMD 向量化
use wasm_bindgen::prelude::*;
#[wasm_bindgen]
pub fn simd_add_arrays(a: &[f32], b: &[f32], result: &mut [f32]) {
#[cfg(target_feature = "simd128")]
{
use std::arch::wasm32::*;
let chunks = a.chunks_exact(4)
.zip(b.chunks_exact(4))
.zip(result.chunks_exact_mut(4));
for ((a_chunk, b_chunk), mut r_chunk) in chunks {
let va = v128_load(a_chunk.as_ptr() as *const v128);
let vb = v128_load(b_chunk.as_ptr() as *const v128);
let sum = f32x4_add(va, vb);
v128_store(r_chunk.as_mut_ptr() as *mut v128, sum);
}
}
#[cfg(not(target_feature = "simd128"))]
{
for i in 0..result.len().min(a.len()).min(b.len()) {
result[i] = a[i] + b[i];
}
}
}
串流實例化
// 串流編譯與實例化:減少首次載入時間
async function streamInstantiateWasm(url, imports) {
const response = await fetch(url);
if (!response.headers.get('content-type')?.includes('wasm')) {
console.warn('伺服器未設定正確的 WASM Content-Type');
}
const { instance } = await WebAssembly.instantiateStreaming(
response,
imports
);
return instance.exports;
}
// 使用範例
const wasm = await streamInstantiateWasm('./wasm_perf_demo.wasm', {});
console.log('WASM ready!');
真實案例:線上影像處理引擎
架構設計
┌─────────────┐ ┌──────────────┐ ┌──────────────┐
│ 使用者上傳影像│────▶│ 主執行緒調度器│────▶│ Worker 池 │
└─────────────┘ │ (任務分配) │ │ (WASM 計算) │
└──────────────┘ └──────────────┘
│ │
▼ ▼
┌──────────────┐ ┌──────────────┐
│ 進度回呼 │◀────│ 結果聚合 │
│ (UI 更新) │ │ (影像合成) │
└──────────────┘ └──────────────┘
完整實作
use wasm_bindgen::prelude::*;
#[wasm_bindgen]
pub struct ImageProcessor {
width: u32,
height: u32,
data: Vec<u8>,
}
#[wasm_bindgen]
impl ImageProcessor {
#[wasm_bindgen(constructor)]
pub fn new(width: u32, height: u32) -> Self {
let data = vec![0u8; (width * height * 4) as usize];
Self { width, height, data }
}
pub fn load_data(&mut self, data: &[u8]) {
let copy_len = data.len().min(self.data.len());
self.data[..copy_len].copy_from_slice(&data[..copy_len]);
}
pub fn apply_grayscale(&mut self) {
for pixel in self.data.chunks_exact_mut(4) {
let gray = (pixel[0] as f32 * 0.299
+ pixel[1] as f32 * 0.587
+ pixel[2] as f32 * 0.114) as u8;
pixel[0] = gray;
pixel[1] = gray;
pixel[2] = gray;
}
}
pub fn apply_brightness(&mut self, factor: f32) {
for pixel in self.data.chunks_exact_mut(4) {
pixel[0] = (pixel[0] as f32 * factor).min(255.0) as u8;
pixel[1] = (pixel[1] as f32 * factor).min(255.0) as u8;
pixel[2] = (pixel[2] as f32 * factor).min(255.0) as u8;
}
}
pub fn apply_contrast(&mut self, contrast: f32) {
let intercept = 128.0 * (1.0 - contrast);
for pixel in self.data.chunks_exact_mut(4) {
pixel[0] = (pixel[0] as f32 * contrast + intercept).clamp(0.0, 255.0) as u8;
pixel[1] = (pixel[1] as f32 * contrast + intercept).clamp(0.0, 255.0) as u8;
pixel[2] = (pixel[2] as f32 * contrast + intercept).clamp(0.0, 255.0) as u8;
}
}
pub fn get_data(&self) -> &[u8] {
&self.data
}
}
💡 使用 雜湊計算 工具驗證處理前後影像資料的完整性。
常見問題 FAQ
Q1: WebAssembly 能完全替代 JavaScript 嗎?
不能。WASM 擅長計算密集型任務,但無法直接操作 DOM。2026 年最佳實踐是混合架構:JS 負責 UI 互動和 DOM 操作,WASM 負責資料處理和演算法計算。
Q2: 什麼時候應該選擇 WASM 而非 JavaScript?
- 影像/視訊/音訊處理
- 加密與雜湊計算
- 資料壓縮/解壓
- 大規模資料排序/搜尋
- 物理引擎/遊戲邏輯
- AI 推論(ONNX Runtime WASM)
Q3: Rust 編譯的 WASM 體積太大怎麼辦?
- 設定
opt-level = "z"+lto = true+panic = "abort" - 使用
wasm-opt -Oz後處理 - 使用
wasm-snip移除 panic 基礎設施 - 啟用
gzip/brotli壓縮傳輸(WASM 壓縮率極高) - 按功能拆分為多個 WASM 模組,按需載入
Q4: WASM 模組如何做版本管理和快取?
// 基於 Content Hash 的快取策略
const WASM_VERSION = 'v1.2.3';
const CACHE_KEY = `wasm-module-${WASM_VERSION}`;
async function loadWasmWithCache() {
const cache = await caches.open('wasm-cache');
let response = await cache.match(CACHE_KEY);
if (!response) {
response = await fetch('./wasm_perf_demo.wasm');
await cache.put(CACHE_KEY, response.clone());
}
const { instance } = await WebAssembly.instantiateStreaming(response);
return instance.exports;
}
Q5: 如何在 WASM 中處理錯誤?
use wasm_bindgen::prelude::*;
#[wasm_bindgen]
pub enum WasmError {
InvalidInput,
OutOfMemory,
ProcessingFailed,
}
#[wasm_bindgen]
pub fn safe_process(input: &[u8]) -> Result<Vec<u8>, WasmError> {
if input.is_empty() {
return Err(WasmError::InvalidInput);
}
if input.len() > 10 * 1024 * 1024 {
return Err(WasmError::OutOfMemory);
}
Ok(input.iter().map(|&b| b.wrapping_add(1)).collect())
}
總結與展望
WebAssembly 在 2026 年已從瀏覽器擴展到全堆疊:WASM Component Model 實現了語言無關的模組互操作,WASI 讓伺服端 WASM 成為容器化的輕量替代,SIMD 和多執行緒支援讓 WASM 效能逼近原生程式碼。
核心要點回顧:
- 選對場景:計算密集型用 WASM,DOM 操作用 JS
- 工具鏈成熟:wasm-pack + wasm-bindgen 讓 Rust→WASM 開發體驗流暢
- 記憶體是關鍵:避免頻繁跨邊界資料拷貝,善用共享記憶體
- 平行化加速:Web Worker + WASM 充分利用多核 CPU
- 體積優化:lto + wasm-opt + brotli 壓縮讓載入速度可控
- SIMD 向量化:數值計算場景可獲得額外 2-4 倍加速
💡 探索更多工具:Base64 跨解碼、JSON 格式化、雜湊計算
本站提供瀏覽器本地工具,免註冊即可試用 →
#WebAssembly#WASM#Rust#性能优化#教程