All Projects → Kimundi → Greenwasm

Kimundi / Greenwasm

Licence: other
An implementation of the Webassembly spec in Rust

Projects that are alternatives of or similar to Greenwasm

Draw App
In browser drawing app built in rust / wasm
Stars: ✭ 87 (-14.71%)
Mutual labels:  webassembly
Wasm Forth
A Forth implementation compiling to WebAssembly.
Stars: ✭ 92 (-9.8%)
Mutual labels:  webassembly
Evm2wasm
[ORPHANED] Transcompiles EVM code to eWASM
Stars: ✭ 96 (-5.88%)
Mutual labels:  webassembly
Sax Wasm
The first streamable, fixed memory XML, HTML, and JSX parser for WebAssembly.
Stars: ✭ 89 (-12.75%)
Mutual labels:  webassembly
Wasmer
🚀 The leading WebAssembly Runtime supporting WASI and Emscripten
Stars: ✭ 11,047 (+10730.39%)
Mutual labels:  webassembly
Assortedwidgets
OpenGL GUI library
Stars: ✭ 92 (-9.8%)
Mutual labels:  webassembly
Wasm To Oci
Use OCI registries to distribute WASM modules
Stars: ✭ 83 (-18.63%)
Mutual labels:  webassembly
Wasmer Go
🐹🕸️ WebAssembly runtime for Go
Stars: ✭ 1,365 (+1238.24%)
Mutual labels:  webassembly
Webnbt
An HTML5 NBT-editor based on emscripten
Stars: ✭ 91 (-10.78%)
Mutual labels:  webassembly
Telegram React
Experimental Telegram web client with tdlib, webassembly and react js under the hood
Stars: ✭ 1,332 (+1205.88%)
Mutual labels:  webassembly
Plotters
A rust drawing library for high quality data plotting for both WASM and native, statically and realtimely 🦀 📈🚀
Stars: ✭ 1,287 (+1161.76%)
Mutual labels:  webassembly
Eos Dev Book
Stars: ✭ 90 (-11.76%)
Mutual labels:  webassembly
Dcmjs
dcmjs is a javascript cross-compile of dcmtk (dcmtk.org).
Stars: ✭ 92 (-9.8%)
Mutual labels:  webassembly
Web Dsp
A client-side signal processing library utilizing the power of WebAssembly (.wasm)
Stars: ✭ 1,278 (+1152.94%)
Mutual labels:  webassembly
Wasi Fs Access
This is a demo shell powered by WebAssembly, WASI, Asyncify and File System Access API.
Stars: ✭ 98 (-3.92%)
Mutual labels:  webassembly
Blazorboilerplate
Blazor Boilerplate / Starter Template with MatBlazor
Stars: ✭ 1,258 (+1133.33%)
Mutual labels:  webassembly
Emscripten Docker
Docker image with Emscripten to compile ASM.js and WebAssembly
Stars: ✭ 92 (-9.8%)
Mutual labels:  webassembly
Cobol Js Emscripten
Stars: ✭ 101 (-0.98%)
Mutual labels:  webassembly
Blake3
BLAKE3 hashing for JavaScript: native Node bindings (where available) and WebAssembly
Stars: ✭ 100 (-1.96%)
Mutual labels:  webassembly
D3 Wasm Force
A re-implementation of d3-force with WebAssembly.
Stars: ✭ 93 (-8.82%)
Mutual labels:  webassembly

greenwasm

An implementation of the Webassembly spec in Rust.

The structure of the project tries to follow the structure of the Spec where possible. Current progress:

  • [x] Stucture (crate greenwasm-structure): Typedefs for Wasm Types, Instructions and Modules.
  • [x] Validation (crate greenwasm-validation): Validator for a Wasm Module.
  • [x] Execution (crate greenwasm-execution): Naive Execution Engine for a Wasm Module.
  • [x] Binary-Format (crate greenwasm-binary-format) parser for the .wasm binary format.
  • [ ] Text-Format: Parser for the .wat text format.

The individual crates are reexported from the central greenwasm crate, which also ties them together with a testsuite and some fuzzer scripts.

In the current version this is mainly a learning exercise, but the long-term goals include:

  • Modularity: It should be possible to use the parser/validator/typedefs independent from each other. This is already somewhat possible due to the split in different crates.
  • Genericy: It should be possible to parse/validate independent from the underlying AST format.
  • Performance: It should be usable for performance-oriented projects.

Testsuite

The greenwasm-spectest crate contains a library shim around a mirror of the official Webasembly MVP testsuite.

It is used as a dev-dependency by the main greenwasm crate, but has no dependencies on other crates in this repo. As such, it can be used as a independent testsuite launcher for other Webassembly implementations.

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].