Go to file
2019-02-15 08:28:47 -08:00
.circleci add lua integration test (#109) 2019-02-08 17:47:51 -08:00
examples Make nginx work on Linux 2019-01-17 18:53:19 +01:00
installer Fix/windows installer (#178) 2019-02-14 15:30:42 -08:00
integration_tests add lua integration test (#109) 2019-02-08 17:47:51 -08:00
lib Merge branch 'master' into fix/grow-api 2019-02-15 08:28:47 -08:00
src Fix/windows installer (#178) 2019-02-14 15:30:42 -08:00
.appveyor.yml Fix/windows installer (#178) 2019-02-14 15:30:42 -08:00
.gitattributes Fixed spectests ignored by git attributes 2019-01-31 13:43:04 -08:00
.gitignore Ignore intellij settings 2019-01-17 23:19:14 +01:00
ARCHITECTURE.md fix some minor typos in ARCHITECTURE (#148) 2019-02-06 18:07:46 -08:00
ATTRIBUTIONS.md Add Emscripten tests/core tests 2018-12-27 01:46:41 -06:00
binary-name.sh Trying to autoplublish releases 2018-11-13 10:38:09 -08:00
Cargo.lock add windows exception handling in C (#175) 2019-02-14 09:58:33 -08:00
Cargo.toml add windows exception handling in C (#175) 2019-02-14 09:58:33 -08: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 lua integration test (#109) 2019-02-08 17:47:51 -08:00
README.md add windows exception handling in C (#175) 2019-02-14 09:58:33 -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 Join the Wasmer Community

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

NEW : Now you can also embed Wasmer in your Rust application, check our example repo to see how to do it!

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 WebAssembly files (including Nginx, and Lua!):

# Run Lua
wasmer run examples/lua.wasm

# Run Nginx
wasmer run examples/nginx/nginx.wasm -- -p examples/nginx -c nginx.conf

Code Structure

Wasmer is structured into different directories:

  • src: code related to the wasmer excutable binary itself
  • lib: modularized libraries that Wasmer uses under the hood
  • examples: some useful examples to getting started with wasmer

Dependencies

Building wasmer requires rustup.

To build on Windows, download and run rustup-init.exe then follow the onscreen instructions.

To build on other systems, run:

curl https://sh.rustup.rs -sSf | sh

Other dependencies

Please select your operating system:

macOS

If you have homebrew installed:

brew install cmake

Or, in case you have ports:

sudo port install cmake

Debian-based Linuxes

sudo apt install cmake

Windows (MSVC)

Windows support is highly experimental. Only simple wasm programs may be run, and no syscalls are allowed. This means nginx and lua do not work on Windows. See this issue for ongoing Emscripten syscall polyfills for Windows.

  1. Install Python for Windows (https://www.python.org/downloads/release/python-2714/). The Windows x86-64 MSI installer is fine. You should change the installation to install the "Add python.exe to Path" feature.

  2. Install Git for Windows (https://git-scm.com/download/win). DO allow it to add git.exe to the PATH (default settings for the installer are fine).

  3. Install CMake (https://cmake.org/download/). Ensure CMake is in the PATH.

Building

Wasmer is built with Cargo, the Rust package manager.

# checkout code
git clone https://github.com/wasmerio/wasmer.git
cd wasmer

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

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

You can also run integration tests with:

make integration-tests

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 (in the works)
  • Support Rust ABI calls
  • Support GO 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.