Go to file
2018-12-24 13:38:54 -06:00
.circleci Add CI job to test rust nightly 2018-12-24 13:38:54 -06:00
build Improved emscripten env(get,set,unset,put) integration 2018-12-21 17:16:40 -08:00
emtests Improved emtests env test 2018-12-21 17:19:08 -08:00
examples Added lua.wasm example 2018-12-18 17:22:02 -08:00
spectests Added unwind spectests 2018-11-27 23:38:35 -08:00
src Add workaround to prevent use after free issue resulting in bad pointer 2018-12-24 13:10:29 -06:00
.gitignore Refactored build outside src 2018-12-09 18:47:34 -08:00
ARCHITECTURE.md Added first draft of Wasmer ARCHITECTURE 2018-11-28 16:43:11 -08:00
ATTRIBUTIONS.md Merge pull request #76 from wasmerio/attributions-with-licenses 2018-12-20 19:07:03 -08:00
binary-name.sh Trying to autoplublish releases 2018-11-13 10:38:09 -08:00
Cargo.lock Update to latest wasmparser version 2018-12-20 00:35:11 -06:00
Cargo.toml Update to latest wasmparser version 2018-12-20 00:35:11 -06:00
install.sh Refactor and remove bash-specific syntax 2018-12-12 01:10:58 +01: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 Add rustfmt make command and CI configure 2018-12-15 00:45:03 -06:00
README.md Improved attributions 2018-12-19 13:00:07 -08:00
rustfmt.toml Added support for 0 or 2 params in main emscripten function 2018-12-15 22:51:10 -08:00

Wasmer logo

Build Status License

Introduction

Wasmer is a Standalone JIT WebAssembly runtime, aiming to be fully compatible with Emscripten, Rust and Go.

Install Wasmer with:

curl https://get.wasmer.io -sSfL | sh

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 any wasm module (including Nginx!):

wasmer run examples/nginx/nginx.wasm -- -p examples/nginx -c nginx.conf

Building & Running

To build this project you will need Rust and Cargo.

# checkout code
git clone https://github.com/wasmerio/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
  • It should be fast (partially achieved)
  • Support Emscripten calls (on the works)
  • Support Rust ABI calls

Architecture

If you would like to know how Wasmer works under the hood, please visit our ARCHITECTURE document.

License

MIT/Apache-2.0

Attributions.