Live data from Hacker News

Show HN: I built a WASM-console using WebAssembly and tinygo

github.com

1–8 of 8 posts

Re: Show HN: I built a WASM-console using WebAssembly and tinygo

#4
Cool! I also built a WASM console a while ago using Zig, Clang, and slightly modifying various BSD utilities. There is a browser demo at https://cowasm.sh/ , but you could also run it in a terminal and access your local files (similar to what your WASM-console does). Anyways, thanks for sharing your console.

Re: Show HN: I built a WASM-console using WebAssembly and tinygo

#7
post #3

I am the author of wasm-console. happy to answer any questions you may have.

what is wasm-console / what is a wasmshell?

wasm-console (formally wasmshell) is a webassembly component that can help you explore the filesystem, make network requests at the moment.

The idea was born when trying to debug why my component could not access a particular file and I really wanted to be able to do "ls" on the filesystem to see what is there.

Re: Show HN: I built a WASM-console using WebAssembly and tinygo

#8

Cool! I also built a WASM console a while ago using Zig, Clang, and slightly modifying various BSD utilities. There is a browser demo at https://cowasm.sh/ , but you could also run it in a terminal and access your local files (similar to what your WASM-console does). Anyways, thanks for sharing your console.

that is so cool. I will try it out as well. thank you for sharing.