So this can compile other languages to run on deno using Web assembly?

Seems like a lot of indirection to emulate the native assembly code. I guess it's cross-platform though right?

Happen to know this particular fellow who authored the lib from the Deno discord (really brilliant, nice guy) and he took the time to explain the same question to me earlier in writing this.

This is the gist of it:

- WASM is sandboxed. The shortest way to explain it is that anything that uses a syscall won't work. These syscalls include things like networking and filesystem access.

- WASI is a standard interface/specification for WASM. What it does is provide a spec of function signatures for syscalls, and provide the compile-time swap of stdlib functions that use these.

For example, Rust’s "open" (and I believe C's "fopen") is implemented by calling "(__wasi_)path_open" when it’s compiled to WebAssembly via WASI. And "path_open" is meant to act like the "openat" syscall.

You can already run other languages compiled to WASM on Deno, by just loading the .wasm file bytes and instantiating.

You can also run native code in Deno through Rust "native Ops"/plugins. This can be pure Rust, or Rust calling C/C++ externs, etc.

So what is the point then, why bother?

WASI allows you to compile and run programs which have behavior that requires syscalls, and hopefully get the functionality fully emulated.

So with an implemented WASI interface in a language, then you can take some compiled WASM lib using WASI and (mostly) assume it'll run in that environment too.

---

Edit: Also a note, I have fairly little understanding of low-level programming so I may have butchered this. I make no claims to accuracy, this is my rough understanding.

Edit2: What really helped my understanding was looking at the Typescript implementation of these syscalls, so here you can see the implementation of "path_open" in TS that provides WASI the functionality it needs for using that method:

https://deno.land/x/wasi/mod.ts#L881

To expand, this functionality is of course not unique. There are numerous WASM runtimes out there, like wasmtime [1] or wasmer [2].

The interesting aspects of using Deno for this are:

a) v8 is bound to have a high quality wasm JIT and already has a sophisticated sandbox (although JS and the browser context probably bring in a lot of complexity that a pure WASM sandbox doesn't have to deal with)

b) easy interop with Javascript/Typescript code

c) Deno is experimenting with finer grained permission based sandboxing, so this fits well within the domain

[1] https://github.com/bytecodealliance/wasmtime

[2] https://wasmer.io/