Popularity
9.4
Stable
Activity
1.2
-
152
9
24
Monthly Downloads: 2
Programming language: Haskell
License: MIT License
wasm alternatives and similar packages
Based on the "Compiler" category.
Alternatively, view wasm alternatives based on common mentions on social networks and blogs.
-
binaryen
DISCONTINUED. DEPRECATED in favor of ghc wasm backend, see https://www.tweag.io/blog/2022-11-22-wasm-backend-merged-in-ghc
CodeRabbit: AI Code Reviews for Developers
Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.
Promo
coderabbit.ai

* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of wasm or a related project?
Popular Comparisons
README
Haskell WebAssembly Toolkit
Goals
- Provide a WebAssembly code generation tool for Haskell
- Create an infrastructure for Cmm to WebAssembly code generator
- Have Fun :)
Status
- [x] Lexer: supports nested block comments and all lexemes from the WebAssembly Spec
- [x] Parser: parses all examples from WebAssembly Core TestsSuit (including folded instructions parsing)
- [x] Renaming Phase: substitute identifiers with correct indexes, expand all implicit type declarations)
- [x] Binary format parser/serializer
- [x] Validation Phase: execute a verification procedure from the Spec
- [x] Execution Phase: implement a simple interpreter
- [x] Support extended Core Test Suit assertion grammar
- [X] Compile Core Tests to Tasty test cases and pass all tests
Todo
- [ ] Improve error messages for text representation parsing
- [ ] Text Representation pretty-printer
- [ ] Command line tool for calling interpreter/compiler/validator
- [ ] Codegen interface for type enforced generating valid WASM code
Development
Clond sources to directory and use stack
for running tests:
stack build && stack test