wat2wasm

3.0.0 • Public • Published

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

License

ISC

Dependents (0)

Package Sidebar

Install

npm i wat2wasm

Weekly Downloads

415

Version

3.0.0

License

ISC

Unpacked Size

1.2 MB

Total Files

6

Last publish

Collaborators

  • emilbayes