Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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
...
```