gree_leran/node_modules/@webassemblyjs/wasm-parser
Strange 73b4a0e3ef first commit 2024-06-14 09:11:29 +08:00
..
esm first commit 2024-06-14 09:11:29 +08:00
lib first commit 2024-06-14 09:11:29 +08:00
LICENSE first commit 2024-06-14 09:11:29 +08:00
README.md first commit 2024-06-14 09:11:29 +08:00
package.json first commit 2024-06-14 09:11:29 +08:00

README.md

@webassemblyjs/wasm-parser

WebAssembly binary format parser

Installation

yarn add @webassemblyjs/wasm-parser

Usage

import { decode } from "@webassemblyjs/wasm-parser";
import { readFileSync } from "fs";

const binary = readFileSync("/path/to/module.wasm");

const decoderOpts = {};
const ast = decode(binary, decoderOpts);

Decoder options

  • dump: print dump information while decoding (default false)
  • ignoreCodeSection: ignore the code section (default false)
  • ignoreDataSection: ignore the data section (default false)