5 个版本

0.0.4 2020 年 4 月 10 日
0.0.3 2020 年 4 月 4 日
0.0.2 2020 年 4 月 3 日
0.0.1 2020 年 4 月 3 日
0.0.0 2020 年 4 月 3 日

WebAssembly 中排名第 1567

MIT/Apache

3MB
4K SLoC

wq

一个简单的 CLI 工具,可以将 WebAssembly 转换为 JSON。这可以与如 jq 这样的其他工具一起使用

cargo install wq

用法

# basic print
wq test.wasm 
# write to file
wq test.wasm test.json 
# for pipe chaining
cat simplest.wasm | wq 

获取格式化输出

cat simplest.wasm | wq | jq
{
  "sections": [
    {
      "section_type": "type",
      "content": {
        "types": [
          {
            "value_type": "function",
            "content": {
              "inputs": [],
              "outputs": [
                "I32"
              ]
            }
          }
        ]
      }
    },
    {
      "section_type": "function",
      "content": {
        "function_types": [
          0
        ]
      }
    },
    {
      "section_type": "memory",
      "content": {
        "memories": [
          {
            "min_pages": 2,
            "max_pages": 10
          }
        ]
      }
    },
    {
      "section_type": "export",
      "content": {
        "exports": [
          {
            "export_type": "function",
            "content": {
              "name": "main",
              "index": 0
            }
          },
          {
            "export_type": "memory",
            "content": {
              "name": "memory",
              "index": 0
            }
          }
        ]
      }
    },
    {
      "section_type": "code",
      "content": {
        "code_blocks": [
          {
            "locals": [],
            "code_expression": [
              {
                "op": "I32Const",
                "params": 42
              }
            ]
          }
        ]
      }
    }
  ]
}

依赖

~1–9MB
~80K SLoC