Spice up the project README, fill out more docs (#1010)

* Spice up the project README, fill out more docs

This is an attempt to spruce up wasmtime's README.md file as well as
fill out more of the missing documentation in the `docs/` folder.
There's still a long way to go but I hoped here to mostly move around
existing information and add new information. As always happy to have
feedback!

* Tweak CLI wording

* Remove no-longer relevant clause

* Update sandboxing docs

* Handle comments
This commit is contained in:
Alex Crichton
2020-02-27 17:28:08 -06:00
committed by GitHub
parent 35d5c6bdde
commit 8caa5a9476
13 changed files with 388 additions and 89 deletions

View File

@@ -1 +1,12 @@
# Writing WebAssembly
Wasmtime is a runtime for *executing* WebAssembly but you also at some point
need to actually produce the WebAssembly module to feed into Wasmtime! This
section of the guide is intended to provide some introductory documentation for
compiling source code to WebAssembly to later run in Wasmtime. There's plenty of
other documentation on the web for doing this, so you'll want to be sure to
check out your language's documentation for WebAssembly as well.
* [Rust](wasm-rust.md)
* [C/C++](wasm-c.md)
* [WebAssembly Text Format (`*.wat`)](wasm-wat.md)