mirror of
https://github.com/fluencelabs/wasm-module-name
synced 2025-03-15 19:50:52 +00:00
19 lines
321 B
Markdown
19 lines
321 B
Markdown
# wasm-module-name
|
|
|
|
Console utility to show and change optional Wasm module name
|
|
|
|
## Usage
|
|
|
|
The utility supports `show` and `set` commands:
|
|
|
|
```bash
|
|
|
|
~ $ wasm-module-name show test.wasm
|
|
The module name is <no-name>
|
|
|
|
~ $ wasm-module-name set test.wasm test
|
|
|
|
~ $ wasm-module-name show test.wasm
|
|
The module name is test
|
|
```
|