wasm-module-name/README.md

19 lines
321 B
Markdown
Raw Normal View History

2019-03-25 09:28:00 +03:00
# wasm-module-name
2019-07-27 21:12:48 +03:00
Console utility to show and change optional Wasm module name
2019-04-07 11:11:08 +03:00
## Usage
The utility supports `show` and `set` commands:
```bash
~ $ wasm-module-name show test.wasm
2019-04-07 11:19:32 +03:00
The module name is <no-name>
2019-04-07 11:11:08 +03:00
~ $ wasm-module-name set test.wasm test
~ $ wasm-module-name show test.wasm
2019-04-07 11:19:32 +03:00
The module name is test
2019-04-07 11:11:08 +03:00
```