1
0
Fork 0
mirror of https://github.com/gorhill/uMatrix.git synced 2024-05-04 04:13:55 +12:00
uMatrix/src/lib/publicsuffixlist/wasm/README.md
Raymond Hill 9b292304d3
Bring uMatrix up to date
Notably:
- Import logger improvements from uBO
- Import CNAME uncloaking from uBO
- Import more improvements from uBO
- Make use of modern JS features

This should un-stall further development of uMatrix.
2019-12-20 12:24:18 -05:00

929 B

For code reviewers

All wasm files in that directory where created by compiling the corresponding wat file using the command (using publicsuffixlist.wat/publicsuffixlist.wasm as example):

wat2wasm publicsuffixlist.wat -o publicsuffixlist.wasm

Assuming:

  • The command is executed from within the present directory.

wat2wasm tool

The wat2wasm tool can be downloaded from an official WebAssembly project: https://github.com/WebAssembly/wabt/releases.

wat2wasm tool online

You can also use the following online wat2wasm tool: https://webassembly.github.io/wabt/demo/wat2wasm/.

Just paste the whole content of the wat file to compile into the WAT pane. Click "Download" button to retrieve the resulting wasm file.

See also

For the curious, the following online tool allows you to find out the machine code as a result from the WASM code: https://mbebenita.github.io/WasmExplorer/