Go to file
2018-11-05 18:10:34 +01:00
.circleci Trying to fix rust nightly with circleci 2018-11-05 18:10:34 +01:00
examples Add more wasm spectests 2018-10-29 14:36:26 +01:00
spectests Deleted unused spectest inline_module 2018-11-02 11:39:56 +01:00
src Improved Instance docs 2018-11-02 11:37:45 +01:00
.gitignore First working version of the interpreter 2018-10-11 21:29:36 +02:00
.travis.yml Commented cargo bench for now 2018-10-24 02:53:33 +02:00
Cargo.lock Removed unnecessary dependency libffi 2018-10-19 11:46:07 +02:00
Cargo.toml Improved speed of tests with a special feature flag 2018-10-30 17:35:11 +01:00
LICENSE Improved README and added MIT LICENSE 2018-10-14 23:54:28 +02:00
logo.png Added wasmer logo 2018-11-05 14:51:22 +01:00
Makefile Improved spectest generator 2018-10-23 23:54:07 +02:00
README.md Improved README with wasmer logo 2018-11-05 14:52:53 +01: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:

cargo 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