Go to file
2018-11-16 23:57:14 -08:00
.circleci Improved build script for macos 2018-11-16 23:57:02 -08:00
examples Fix table and memory import and improve memory storage 2018-11-16 16:55:49 +01:00
spectests Fix table and memory import and improve memory storage 2018-11-16 16:55:49 +01:00
src Fix table and memory import and improve memory storage 2018-11-16 16:55:49 +01:00
.gitignore Trying to add macos releases 2018-11-16 23:56:21 -08:00
binary-name.sh Trying to autoplublish releases 2018-11-16 23:55:21 -08:00
Cargo.lock Added signal handler to handle WebAssembly traps properly 2018-11-06 11:15:40 +01:00
Cargo.toml Added signal handler to handle WebAssembly traps properly 2018-11-06 11:15:40 +01:00
install.sh Added first iteration of the install script 2018-11-16 23:57:14 -08:00
LICENSE Improved README and added MIT LICENSE 2018-10-14 23:54:28 +02:00
logo.png Updated logo 2018-11-16 11:37:41 -08:00
Makefile Trying to autoplublish releases 2018-11-16 23:55:21 -08:00
README.md Fixed build status link 2018-11-07 12:47:08 +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

# Use rust nightly (we use 2018-10-07 as latest are failing)
rustup default nightly-2018-10-07

# 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