commit 62d9da4e3e02251a0f61c904e826bc06cf964ff7 Author: Syrus <me@syrusakbary.com> Date: Sun Jul 7 18:16:34 2019 -0700 Fixed syscall221 commit a8fde9148d50d89616d8a85a68110b89e3273229 Author: Syrus <me@syrusakbary.com> Date: Sun Jul 7 18:16:04 2019 -0700 Improved ioctl use case commit 5ad109d39838624ad84232a4c17714b885835893 Merge: 61526e2c 5cab8161 Author: Syrus <me@syrusakbary.com> Date: Sun Jul 7 17:44:25 2019 -0700 Merge branch 'command/dash' into feature/emscripten-update commit 5cab816193d47d53aabb4be4ccaf448dca5ed0b2 Author: Jesús Leganés-Combarro 'piranna <piranna@gmail.com> Date: Sat Jul 6 20:11:49 2019 +0200 Generic IOCTLs mapping commit 5a0dc0374cdc5a3754e3ecc82584288df640d239 Merge: 61cfed79 9d120ed3 Author: Jesús Leganés-Combarro 'piranna <piranna@gmail.com> Date: Sat Jul 6 17:15:02 2019 +0200 Merge remote-tracking branch 'origin/master' into command/dash commit 61cfed7916078602eabbd4448b109f47dcfff1e8 Author: Jesús Leganés-Combarro 'piranna <piranna@gmail.com> Date: Sat Jul 6 13:04:04 2019 +0200 Fixed implementation for syscalls 200, 201 and 202 commit 91e26d1a0ee46d6f9ec4804ca13ca928d55e7bbb Author: Jesús Leganés-Combarro 'piranna <piranna@gmail.com> Date: Sat Jul 6 13:03:26 2019 +0200 Improved debug messages commit 53a8fbeb2a0912e928609f0afcea6ffb1e911193 Author: Jesús Leganés-Combarro 'piranna <piranna@gmail.com> Date: Sat Jul 6 13:03:04 2019 +0200 [___syscall146] Move loop out of `unsafe` zone commit d6dd3696f10f4cbb0722321bd9d06e45a9d464ac Author: Jesús Leganés-Combarro 'piranna <piranna@gmail.com> Date: Sat Jul 6 13:01:31 2019 +0200 [___syscall140] Fixed types commit c827a6a99346535764e22bfb5ab9147a52a0a543 Merge: 2bc16826 5e18d04d Author: Jesús Leganés-Combarro 'piranna <piranna@gmail.com> Date: Sat Jul 6 12:21:33 2019 +0200 Merge remote-tracking branch 'origin/master' into command/dash commit 2bc16826b5923dba56243fe3bd99f4be8a09c990 Author: Jesús Leganés-Combarro 'piranna <piranna@gmail.com> Date: Thu Jul 4 07:05:00 2019 +0200 Implement `getpgid` syscall commit d464954f5803e4d84b6f94dc9ef87cc577aa9c65 Author: Jesús Leganés-Combarro 'piranna <piranna@gmail.com> Date: Thu Jul 4 07:04:36 2019 +0200 [fcntl64] Replace mock for real implementation commit 3fe0183d853624bcdc968a890ac36ff7062905a7 Author: Jesús Leganés-Combarro 'piranna <piranna@gmail.com> Date: Thu Jul 4 07:03:39 2019 +0200 [ioctl] No-of for `TIOCSPGRP` command & code clean-up commit cc83ec9ac1cf1ad60748fd3bb5114a6e6e471d92 Author: Jesús Leganés-Combarro 'piranna <piranna@gmail.com> Date: Thu Jul 4 07:02:47 2019 +0200 [___syscall5] debug messages commit 91587c8bde9d2b02402a7843f37eee22322d86fb Author: Jesús Leganés-Combarro 'piranna <piranna@gmail.com> Date: Thu Jul 4 07:02:20 2019 +0200 [___syscall57] debug messages
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
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
# Run PHP
wasmer run examples/php.wasm
# Run SQLite
wasmer run examples/sqlite.wasm
# Run nginx
wasmer run examples/nginx/nginx.wasm -- -p examples/nginx -c nginx.conf
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 itselflib
: modularized libraries that Wasmer uses under the hoodexamples
: 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 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 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 regarding Emscripten syscall polyfills for Windows.
-
Install Visual Studio
-
Install Rust for Windows
-
Install Python for Windows. The Windows x86-64 MSI installer is fine. Make sure to enable "Add python.exe to Path" during installation.
-
Install Git for Windows. Allow it to add
git.exe
to your PATH (default settings for the installer are fine). -
Install CMake. Ensure CMake is in your PATH.
-
Install LLVM 7.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 sure that `python` is accessible.
make install
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
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 Rust ABI calls
- Support Go ABI calls
Architecture
If you would like to know how Wasmer works under the hood, please see ARCHITECTURE.md.
License
Wasmer is primarily distributed under the terms of the MIT license (LICENSE).