wasmer

Universal WebAssembly runtime

Github stars Tracking Chart

Introduction

Wasmer is a standalone WebAssembly runtime for running WebAssembly outside of the browser, supporting WASI and Emscripten. Wasmer can be used standalone (via the CLI) and embedded in different languages, running in x86 and ARM devices.

Install the Wasmer and WAPM cli with:

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

If Homebrew is installed:

brew install wasmer

Note: Wasmer is also available on Windows

Languages

Wasmer runtime can be used as a library embedded in different languages, so you can use WebAssembly anywhere:,  , Language, Docs, Author(s), Maintenance, Release, Stars, -, -, -, -, -, -, -, Rust logo, Rust, Docs, Wasmer, actively developed, last release, number of Github stars, C logo, C/C++, Docs, Wasmer, actively developed, last release, number of Github stars, Python logo, Python, Docs, Wasmer, actively developed, last release, number of Github stars, Go logo, Go, Docs, Wasmer, actively developed, last release, number of Github stars, PHP logo, PHP, Docs, Wasmer, actively developed, last release, number of Github stars, Ruby logo, Ruby, Docs, Wasmer, actively developed, last release, number of Github stars, Postgres logo, Postgres, Wasmer, actively developed, last release, number of Github stars, JS Logo, JavaScript, Docs, Wasmer, actively developed, last release, number of Github stars, C# logo, C#/.Net, Docs, Miguel de Icaza, actively developed, last release, number of Github stars, R logo, R, Docs, Dirk Schumacher, actively developed, number of Github stars, Elixir logo, Elixir, Docs, Philipp Tessenow, actively developed, last release, number of Github stars, ❓, your language is missing?, ### 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 examples/lua.wasm

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

Docs

Wasmer documentation lives on docs.wasmer.io.

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 for 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

If you have Homebrew installed:

brew install cmake

Or, if you have MacPorts:

sudo port install cmake

Debian-based Linuxes

sudo apt install cmake pkg-config libssl-dev

FreeBSD

pkg install cmake

Windows (MSVC)

Windows support is experimental. WASI is fully supported, but Emscripten support is in 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 Git for Windows. Allow it to add git.exe to your PATH (default
    settings for the installer are fine).

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

  5. Install LLVM 8.0

Building

Rustc Version 1.40+

Wasmer is built with Cargo, the Rust package manager.

The Singlepass backend requires nightly, so if you want to use it,

Set Rust Nightly:

rustup default nightly

Otherwise an up to date (see badge above) version of stable Rust will work.

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 wasitests
  • 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
  • Support Go JS ABI calls (in the works)

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

Main metrics

Overview
Name With Ownerwasmerio/wasmer
Primary LanguageRust
Program languageRust (Language Count: 15)
Platform
License:MIT License
所有者活动
Created At2018-10-11 10:15:53
Pushed At2025-06-02 08:33:55
Last Commit At
Release Count121
Last Release Namev6.0.1 (Posted on )
First Release Name0.1.0 (Posted on )
用户参与
Stargazers Count19.8k
Watchers Count203
Fork Count884
Commits Count19.4k
Has Issues Enabled
Issues Count1995
Issue Open Count240
Pull Requests Count2711
Pull Requests Open Count20
Pull Requests Close Count675
项目设置
Has Wiki Enabled
Is Archived
Is Fork
Is Locked
Is Mirror
Is Private