Go to file
2019-08-14 09:59:43 -07:00
.circleci Add check to see if crates were published to release CI step 2019-08-05 14:54:20 +09:00
.github Added CODEOWNERS file 2019-07-24 17:32:04 -07:00
docs Move architecture into docs 2019-07-31 18:05:15 -07:00
examples Merge branch 'master' into feature/instance-benchmark 2019-08-05 15:07:58 -07:00
fuzz Moved fuzz dir back to root 2019-07-31 21:02:20 -07:00
integration_tests Added WASI integration tests 2019-04-22 17:06:42 -07:00
lib Merge branch 'master' into feature/llvm-nan-fix 2019-08-14 09:59:43 -07:00
scripts Improved Wasmer Installer in Windows 2019-07-31 14:09:01 -07:00
src Remove structopt dependency from LLVM 2019-08-08 19:42:41 -07:00
wapm-cli@b157153568 Updated wapm-cli to 0.3.7 2019-07-31 10:34:53 -07:00
.appveyor.yml Add windows specific excludes 2019-08-06 21:03:09 -06:00
.dockerignore Add Dockerfile and documentation 2019-04-09 01:35:48 -05:00
.gitattributes Fixed spectests ignored by git attributes 2019-01-31 13:43:04 -08:00
.gitignore Improved install script 2019-04-11 15:05:14 -07:00
.gitmodules rm clif submodule; fix master 2019-07-10 10:38:38 -07:00
ATTRIBUTIONS.md Fix formatting and grammar in documentation 2019-02-19 17:01:44 -07:00
bors.toml Add wasm plugin rust example test to bors.toml 2019-07-26 15:00:52 -07:00
build Add a Docker sandbox for building Wasmer 2019-07-29 21:18:04 +03:00
Cargo.lock Update WABT dep to fixe names spectests 2019-08-12 15:35:32 -06:00
Cargo.toml Update WABT dep to fixe names spectests 2019-08-12 15:35:32 -06:00
CHANGELOG.md implement wasi::path_rename 2019-08-09 15:40:04 +09:00
Dockerfile Updated LLVM to 8.0 2019-07-22 14:04:17 -07:00
Dockerfile.build Add a Docker sandbox for building Wasmer 2019-07-29 21:18:04 +03:00
install.sh Remove Logo in non verbose mode 2019-08-11 23:25:50 -07:00
LICENSE Update LICENSE author 2019-04-16 12:11:00 -07:00
logo.png Updated logo 2018-11-12 18:50:58 -08:00
Makefile implement wasi::path_rename 2019-08-09 15:40:04 +09:00
README.md Improved README. Simplified integration tests command 2019-07-31 21:11:29 -07:00
rustfmt.toml update rustfmt.toml to ignore and fmt 2019-07-15 10:43:30 -07:00
SECURITY.md Fix security contact 2019-05-27 14:41:18 -07:00

Wasmer logo

Build Status License Join the Wasmer Community Follow @wasmerio on Twitter

Introduction

Wasmer is a standalone JIT WebAssembly runtime, aiming to be fully compatible with WASI and Emscripten.

Install Wasmer with:

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

Note: Wasmer is also available on Windows. Download the WasmerInstaller.exe from the Github Releases page.

Wasmer runtime can also be embedded in different languages, so you can use WebAssembly anywhere :

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 Lua, PHP, SQLite and nginx!):

# Run Lua
wasmer run examples/lua.wasm

You can find more wasm/wat examples in the examples directory.

With WAPM

Installing Wasmer through wasmer.io includes wapm, the WebAssembly Package Manager.

Wapm allows you to easily download, run, and distribute WebAssembly binaries.

# Install cowsay globally
wapm install -g cowsay

# Run cowsay
wapm run cowsay "Hello, world!"

For more information about wapm, check out the website and this example program.

Code Structure

Wasmer is structured into different directories:

  • src: code related to the Wasmer executable 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 Wasmer 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

macOS

If you have Homebrew installed:

brew install cmake

Or, in case you have MacPorts:

sudo port install cmake

Debian-based Linuxes

Debian-based Linuxes

sudo apt install cmake pkg-config libssl-dev

FreeBSD

FreeBSD

pkg install cmake

Windows

Windows (MSVC)

Windows support is experimental. WASI is fully supported, but Emscripten support is on the works (this means nginx and Lua do not work on Windows - you can track the progress on this issue).

  1. Install Visual Studio

  2. Install Rust for Windows

  3. Install Python for Windows. The Windows x86-64 MSI installer is fine. Make sure to enable "Add python.exe to Path" during installation.

  4. Install Git for Windows. Allow it to add git.exe to your PATH (default settings for the installer are fine).

  5. Install CMake. Ensure CMake is in your PATH.

  6. Install LLVM 8.0

Building

Wasmer is built with Cargo, the Rust package manager.

Set Rust Nightly:

rustup default nightly

And install Wasmer

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

# install tools
make release-clif # To build with cranelift (default)

make release-llvm # To build with llvm support

make release-singlepass # To build with singlepass support

# or
make release # To build with singlepass, cranelift and llvm support

Testing

Thanks to spec tests we can ensure 100% compatibility with the WebAssembly spec test suite.

You can run all the tests with:

rustup default nightly
make test

Testing backends

Each backend can be tested separately:

  • Singlepass: make singlepass
  • Cranelift: make cranelift
  • LLVM: make llvm

Testing integrations

Each integration can be tested separately:

  • Spec tests: make spectests
  • Emscripten: make emtests
  • WASI: make wasi
  • Middleware: make middleware
  • C API: make capi

Benchmarking

Benchmarks can be run with:

make bench-[backend]

# for example
make bench-singlepass

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 of this project (in order of priority):

  • It should be 100% compatible with the WebAssembly spec tests
  • It should be fast (partially achieved)
  • Support WASI - released in 0.3.0
  • Support Emscripten calls (in the works)
  • Support Go js ABI calls

Architecture

If you would like to know how Wasmer works under the hood, please see docs/architecture.md.

License

Wasmer is primarily distributed under the terms of the MIT license (LICENSE).

ATTRIBUTIONS