Skip to content

exograph/wasmphobia

 
 

Repository files navigation

Wasmphobia

Wasmphobia analyzes a WebAssembly file and gives you a breakdown of what contributed to the module’s size. This is only really useful when the WebAssembly binary has DWARF debugging data embedded.

Usage

You can use Wasmphobia interactively on the website or install it locally as a CLI

cargo install --git https://github.com/surma/wasmphobia

How to compile your Wasm

If you care about file size, make sure you compile your code with optimizations (like -O3 and -flto) enabled. In most languages, doing a “release” build should enable these settings for you. However, at the same time, doing a release build often strips debug information from the binary. Here’s a short list of how to do release build with debug symbols.

Rust

You can add --config "profile.release.debug=true" to your cargo invocation. For example, to make a release build targeting WASI, you’d run:

cargo build --config "profile.release.debug=true" --release --target wasm32-wasi

C++ / Emscripten

$(CPP) -O3 -gfull ...

Shoutouts and Credit


License Apache-2.0

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 33.6%
  • JavaScript 31.3%
  • Rust 28.6%
  • CSS 5.1%
  • HTML 1.4%