https://github.com/rhitchcock/wasmrt
Minimal PoC WebAssembly runtime for native modules
https://github.com/rhitchcock/wasmrt
runtime webassembly
Last synced: about 1 month ago
JSON representation
Minimal PoC WebAssembly runtime for native modules
- Host: GitHub
- URL: https://github.com/rhitchcock/wasmrt
- Owner: rhitchcock
- Created: 2017-08-17T10:40:06.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2020-04-01T00:36:58.000Z (about 5 years ago)
- Last Synced: 2024-11-17T04:35:30.205Z (7 months ago)
- Topics: runtime, webassembly
- Language: C++
- Size: 3.91 KB
- Stars: 6
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awe-wasm - WasmRT - activity/m/rhitchcock/wasmrt)  (Runtimes / **C++**)
README
# wasmrt
## Overview
(In very early development)
wasmrt is a runtime built for native execution of WebAssembly modules (virtualized at first, eventually JIT). It will be composed of high-level wasm modules (for commonly-used algorithms such as sorting and GPGPU) and a base layer written in Rust or C++ (unsure yet) for interfacing with the kernel.
Later plans include adding package manager (called wasmpm maybe?).
## Planned design
```
load modules
abstract file reading -> wasm byte stream -> read sections -> create memory structures
run
```## Usage
Using base kernel interface (basically just a few system calls):
```
wasmrt
```Using default module set:
```
wasmrt -d
```Including custom module set:
```
wasmrt -i modules_folder
```