wat2wasm
v3.0.0
Published
WASM/JS clone of wabt's wat2wasm
Downloads
169
Readme
wat2wasm
WASM/JS clone of wabt's wat2wasm
Usage
usage: wat2wasm [options] filename
read a file in the wasm text format, check it for errors, and
convert it to the wasm binary format.
NOTE: This is WASM/JS clone of wabt's wat2wasm command
examples:
# parse and typecheck test.wat and write to test.wasm
$ wat2wasm test.wat
# parse test.wat and write to binary file test.wasm
$ wat2wasm test.wat -o test.wasm
# Read from stdin and write to stdout
$ cat test.wat | wat2wasm - -output=- > test.wasm
options:
-h, --help Print this help message
-f, --features Comma separated list of feature flags to enable
-d, --dump-module Print a hexdump of the module to stdout
-o, --output=FILE output wasm binary file
--debug-names Write debug names to the generated binary file
Features include:
exceptions
mutable_globals
sat_float_to_int
sign_extension
simd
threads
multi_value
tail_call
bulk_memory
reference_types
Install
npm install -g wat2wasm