3.0.0 • Published 4 years ago

wat2wasm v3.0.0

Weekly downloads
98
License
ISC
Repository
github
Last release
4 years ago

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

3.0.0

4 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago