Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rumpl/wasmose
Silly compose-like runner for wasm modules
https://github.com/rumpl/wasmose
Last synced: 15 days ago
JSON representation
Silly compose-like runner for wasm modules
- Host: GitHub
- URL: https://github.com/rumpl/wasmose
- Owner: rumpl
- Created: 2022-11-24T22:43:23.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2022-11-28T07:04:05.000Z (about 2 years ago)
- Last Synced: 2024-11-24T20:32:35.932Z (3 months ago)
- Language: Rust
- Homepage:
- Size: 49.8 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# wasmose
Silly compose-like runner for wasm modules
wasmose -> wasm compose
## Testing
First build the `fs.wasm` module:
```console
$ cd fs
$ make build
$ cp target/wasm32-wasi/release/fs.wasm ../
```And then you can run the `example.yml` stack:
```console
$ ./target/debug/cli example.yml # by default it uses the wasmtime runtime
...
$ ./target/debug/cli --runtime wasmedge example.yml
...
$ ./target/debug/cli --runtime wasmtime example.yml
...
```