Add Hexana to the tools matrix#544
Open
minamoto79 wants to merge 1 commit into
Open
Conversation
Hexana is a binary inspector for WebAssembly modules and components, shipping as an IntelliJ-platform plugin and a VS Code extension built from a single Kotlin parser. It observes binary structure rather than transforming code, so the row claims focus on what is decoded. Approved under the existing `Tools` category per the discussion in WebAssembly#543 (tomayac, tlively, dschuff). Three rows are encoded as [true, note] to flag specific gaps: - componentModel: 10/13 top-level sections decoded; canon, value, and component-level start are stubs; embedded component-type custom section not yet extracted. - memory64: 64-bit limit flags and memidx-carrying memory ops are decoded; not separately validated against the rest of the proposal. - multiValue: type-index multi-value blocks decoded; empty block-type 0x40 is misdecoded as a reference type (known bug). - threads: full 0xFE atomic opcode family; shared-memory flag 0x03 parsed; open-shared flag 0x02 not yet parsed. Closes WebAssembly#543.
andylizi
reviewed
May 20, 2026
Contributor
There was a problem hiding this comment.
Hi, just wanted to randomly chime in, I wonder if we could find ways to further compress this png file from 130 kb (which is 3x larger than the current largest logo1), for example by using https://squoosh.app to reduce the palette and/or using webp. Lots of logos on this page and they kind of add up bit by bit over time 😂
We do have scripts/optimize-svgs.js to reduce the SVGs a bit, but it can't cover raster logos
Footnotes
-
chicory.svgis 42 kb gzipped ↩
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Hexana is a binary inspector for WebAssembly modules and components, shipping as an IntelliJ-platform plugin and a VS Code extension built from a single Kotlin parser. It observes binary structure rather than transforming code, so the row claims focus on what is decoded.
Approved under the existing
Toolscategory per the discussion in #543 (tomayac, tlively, dschuff). Three rows are encoded as [true, note] to flag specific gaps:Closes #543.