diff --git a/component-model/src/SUMMARY.md b/component-model/src/SUMMARY.md index 0b0fa72..11b14f6 100644 --- a/component-model/src/SUMMARY.md +++ b/component-model/src/SUMMARY.md @@ -35,4 +35,8 @@ # Advanced Topics -- [Canonical ABI](./advanced/canonical-abi.md) \ No newline at end of file +- [Canonical ABI](./advanced/canonical-abi.md) + +# Reference + +- [Useful Links](./reference/useful-links.md) diff --git a/component-model/src/reference/useful-links.md b/component-model/src/reference/useful-links.md new file mode 100644 index 0000000..e7b63c4 --- /dev/null +++ b/component-model/src/reference/useful-links.md @@ -0,0 +1,17 @@ +# Useful links + +The following references are helpful in understanding the Component Model and related ecosystem/projects. + +- [WebAssembly Composition tool (`wac`)][wac] +- [WebAssembly package tools (notably `wkg`)][wkg] +- [WASI Preview 2][wasi-p2] +- [Component Model internals][wasm-cm-repo] + - [Component Model AST][ast-explainer] + - [Canonical ABI][canonical-abi] + +[wasm-cm-repo]: https://github.com/WebAssembly/component-model +[wasi-p2]: https://github.com/WebAssembly/WASI/tree/main/wasip2 +[ast-explainer]: https://github.com/WebAssembly/component-model/blob/main/design/mvp/Explainer.md +[canonical-abi]: https://github.com/WebAssembly/component-model/blob/main/design/mvp/CanonicalABI.md +[wac]: https://github.com/bytecodealliance/wac +[wkg]: https://github.com/bytecodealliance/wasm-pkg-tools