wasmerio / wasmer-js

Monorepo for Javascript WebAssembly packages by Wasmer
https://wasmerio.github.io/wasmer-js/
MIT License
948 stars 83 forks source link

demo is broken on https://webassembly.sh/ #433

Open Kreijstal opened 3 months ago

Kreijstal commented 3 months ago

grafik Using firefox on windows 10. Cowsay does not work.

grafik

syrusakbary commented 2 months ago

Hey @Kreijstal, we recommend using https://wasmer.sh/ for now.

You can run any package using: wasmer run.

Eg: wasmer run cowsay hi

Kreijstal commented 2 months ago

Hey @Kreijstal, we recommend using https://wasmer.sh/ for now.

You can run any package using: wasmer run.

Eg: wasmer run cowsay hi

It worked, kind of?

bash-5.1# cowsay hi
bash: cowsay: command not found
bash-5.1# wasmer run cowsay hi
 ____
< hi >
 ----
bash-5.1# wasmer run cowsay hello
thread 'main' panicked at 'failed printing to stdout: Broken pipe (os error 64)', library/std/src/io/stdio.rs:1008:9
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
bash-5.1# wasmer run cowsay hi   
thread 'main' panicked at 'failed printing to stdout: Broken pipe (os error 64)', library/std/src/io/stdio.rs:1008:9
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
bash-5.1# wasmer run cowsay hi
thread 'main' panicked at 'failed printing to stdout: Broken pipe (os error 64)', library/std/src/io/stdio.rs:1008:9
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
bash-5.1# RUST_BACKTRACE=1 wasmer run cowsay hi
thread 'main' panicked at 'failed printing to stdout: Broken pipe (os error 64)', library/std/src/io/stdio.rs:1008:9
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
bash-5.1#