Go to file
2018-11-15 13:30:32 -08:00
.circleci Make wasmer work with stable Rust 2018-11-15 13:30:32 -08:00
examples Upload pypyjs example that should be working 2018-11-15 11:06:55 -08:00
spectests Added token spectests 2018-11-13 17:41:29 -08:00
src Make wasmer work with stable Rust 2018-11-15 13:30:32 -08:00
.gitignore Trying to add macos releases 2018-11-13 11:45:48 -08:00
binary-name.sh Trying to autoplublish releases 2018-11-13 10:38:09 -08:00
Cargo.lock Make wasmer work with stable Rust 2018-11-15 13:30:32 -08:00
Cargo.toml Make wasmer work with stable Rust 2018-11-15 13:30:32 -08:00
install.sh Improved a bit more the install script 2018-11-14 20:00:14 -08:00
LICENSE Improved README and added MIT LICENSE 2018-10-14 23:54:28 +02:00
logo.png Updated logo 2018-11-12 18:50:58 -08:00
Makefile Trying to autoplublish releases 2018-11-13 10:38:09 -08:00
README.md Make wasmer work with stable Rust 2018-11-15 13:30:32 -08:00
rustfmt.toml Spectests rust files should be ignored by rustfmt 2018-10-19 11:35:25 +02:00

Wasmer logo

Build Status License

Introduction

Wasmer is a Standalone JIT-style WebAsssembly runtime code built on Cranelift code generator engine.

Usage

wasmer can execute both the standard binary format (.wasm) and the text format defined by the WebAssembly reference interpreter (.wat).

Once installed, you will be able to run:

wasmer run my_wasm_file.wasm

Building & Running

To build this project you will need Rust and Cargo.

# checkout code and associated submodules
git clone https://github.com/wafoundation/wasmer.git
cd wasmer

# install tools
# make sure that `python` is accessible.
cargo install

Testing

Thanks to spectests we can assure 100% compatibility with the WebAssembly spec test suite.

Tests can be run with:

make test

If you need to re-generate the Rust tests from the spectests you can run:

make spectests

Roadmap

Wasmer is an open project guided by strong principles, aiming to be modular, flexible and fast. It is open to the community to help set its direction.

Below are some of the goals (written with order) of this project:

  • It should be 100% compatible with the WebAssembly Spectest (on the works)
  • It should be fast. We can achieve this by caching the function compilations
  • Support Emscripten calls
  • Support Rust ABI calls

License

MIT/Apache-2.0