diff --git a/component-model/src/SUMMARY.md b/component-model/src/SUMMARY.md index a5b94939..3512e3dd 100644 --- a/component-model/src/SUMMARY.md +++ b/component-model/src/SUMMARY.md @@ -24,6 +24,7 @@ - [Python](./language-support/python.md) - [Rust](./language-support/rust.md) - [WebAssembly Text Format (WAT)](./language-support/wat.md) + - [Other Languages](./language-support/other-languages.md) - [Running Components](./running-components.md) - [Wasmtime](./running-components/wasmtime.md) - [jco](./running-components/jco.md) diff --git a/component-model/src/language-support.md b/component-model/src/language-support.md index beaf58c9..07f60781 100644 --- a/component-model/src/language-support.md +++ b/component-model/src/language-support.md @@ -40,3 +40,4 @@ without using a higher-level language front-end. - [WebAssembly Text Format (WAT)](./language-support/wat.md#wat-webassembly-text-format) - [Building a Component from WAT with `wasm-tools`](./language-support/wat.md#building-a-component-with-wasm-tools) - [Running a Component with Wasmtime](./language-support/wat.md#running-a-component-with-wasmtime) + - [Other Languages with Component Model Support](./language-support/other-languages.md) diff --git a/component-model/src/language-support/other-languages.md b/component-model/src/language-support/other-languages.md new file mode 100644 index 00000000..6c383d05 --- /dev/null +++ b/component-model/src/language-support/other-languages.md @@ -0,0 +1,14 @@ +# Other Languages with Component Model Support + +More languages continue to add support for the component model. The following is a living list of other languages that support the component model and documentation on how to get started using components in those languages. + +[comment]: # (Add first language here) + +## Adding a New Language to the Guide + +Interested in adding another language to this list? Create a PR to this [document](https://github.com/bytecodealliance/component-docs/blob/main/component-model/src/language-support/other-languages.md) that adds an entry with the following information: + +- Language name as a level 3 header +- Link to the project page on Github page +- Link to the project hosted documentation on getting started with components. Feel free to use our example WITs if you want to match the style of this guide. +- Please insert alphabetically \ No newline at end of file