-
Notifications
You must be signed in to change notification settings - Fork 62
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update distributing components section with docs on wkg #220
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,158 @@ | ||
# Distributing Components | ||
# Distributing and Fetching Components and WIT | ||
|
||
Modern applications rely extensively on third-party packages - so extensively that distributing packages is almost an industry in itself. Traditionally, these have been specific to a language. For example, JavaScript developers are used to using packages from NPM, and Rust developers use `crates.io`. Some runtimes support binary distribution and linking, enabling limited cross-language interop; for example, Maven packages can be written in any language that targets the Java runtime. Services like this are variously referred to as "package managers" or "registries." | ||
|
||
Publishing and distribution are not defined by the core component model, but will form an important part of the component ecosystem. For example, if you're writing JavaScript, and want to pull in a highly optimised machine learning algorithm written in C and compiled to Wasm, you should be able to invoke it from a registry, just as easily as you would add a NPM package from the NPM registry. | ||
Publishing and distribution are not defined by the core component model, but form important part of the component ecosystem. For example, if you're writing JavaScript, and want to pull in a highly optimised machine learning algorithm written in C and compiled to Wasm, you can pull it from a registry, ideally just as easily as you would add a NPM package from the NPM registry. | ||
|
||
Publishing and distribution is a work in progress. The proposed registry protocol is [warg](https://warg.io/), but this is still in development, and there are no public warg registries as yet. You can find more information about the development of the registry protocol [here](https://github.com/bytecodealliance/governance/blob/main/SIGs/SIG-Registries/proposal.md). | ||
You can get involved with improving the packaging and hosting of Wasm components by joining the [Bytecode Alliance Packaging Special Interest Group (SIG)](https://github.com/bytecodealliance/governance/blob/main/SIGs/sig-packaging/proposal.md). | ||
|
||
## The `wkg` Registry Tool | ||
|
||
The [`wasm-pkg-tools` project](https://github.com/bytecodealliance/wasm-pkg-tools) enables fetching and publishing Wasm components to OCI registries. It contains a `wkg` CLI tool that eases distributing and fetching components and WIT packages. The usual way of using `wkg` is to address packages by their package name, i.e. `example:[email protected]`. When using `wkg` this way, you don't need to know about the physical location of the package , as the `wkg` configuration handles that for you. If you need to, though, you can also use `wkg` to work with OCI artifacts directly, addressing them by OCI references when using the `wkg oci` subcommand. | ||
|
||
`wkg` contains several subcommand: | ||
|
||
- `wkg oci` - pushes/pulls Wasm artifacts to/from any OCI registry | ||
- `wkg publish` - publish components or WIT packages by package name | ||
- `wkg get` - pulls components or WIT packages by package name | ||
- `wkg wit` - commands for interacting with WIT files and dependencies | ||
- `wkg config` - interact with the `wkg` configuration | ||
|
||
The following sections detail a subset of actions that can be performed with `wkg`. | ||
|
||
## `wkg` Configuration Files | ||
|
||
When you use most `wkg` commands (`wkg oci` being the exception), you don't interact with physical locations, only with package names. The `wkg` configuration file is used to map package naming to physical location. It provides the ability to configure: | ||
|
||
- The default registry for packages in a given namespace. For example, the location for `wasi` packages such as `wasi:clocks` or `wasi:http`. | ||
- Registry overrides for specific packages, or packages not stored in the same place as the rest of their namespace. For example, if `wasi:key-value` were stored in a different registry from other `wasi` packages. | ||
- The default registry for all packages not listed in one of the previous sections | ||
|
||
The configuration file also includes credentials for private registries, or for pushing to registries where you have permission, and other configuration options. See the [`wkg` docs for more configuration options](https://github.com/bytecodealliance/wasm-pkg-tools?tab=readme-ov-file#configuration). | ||
|
||
For example, to fetch WASI packages, such as `wasi:clocks` and `wasi:http`, you can add a line under the `namespace_registries` section for the `wasi` namespace. Specifically, the example below configures `wkg` to fetch WASI packages from the [WebAssembly OCI GitHub Container Registry](https://github.com/orgs/WebAssembly/packages), where the latest interfaces are published upon WASI releases. To edit your `wkg` config file, run `wkg config --edit`. | ||
|
||
> Remember, all package names consist of the a namespace field followed by the package field. The package name `wasi:clocks` has a namespace of `wasi` and package field of `clocks`. In this way, the following configuration ensures that `wkg` will know to route fetches and publishes of any `wasi:x` to the configured location. | ||
kate-goldenring marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
```toml | ||
# $XDG_CONFIG_HOME/wasm-pkg/config.toml | ||
default_registry = "ghcr.io" | ||
|
||
[namespace_registries] | ||
# Tell wkg that packages with the `wasi` namespace are in an OCI registry under ghcr.io/webassembly | ||
wasi = { registry = "wasi", metadata = { preferredProtocol = "oci", "oci" = {registry = "ghcr.io", namespacePrefix = "webassembly/" } } } | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I can copy this but I'm not sure I understand it. My guess is that this is talking about "packages with the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I am still not sure I get what |
||
``` | ||
|
||
As a more generic example, The following configuration, instructs `wkg` to use [ttl.sh](https://ttl.sh/) OCI registry for all packages with the `docs` namespace. | ||
|
||
```toml | ||
# $XDG_CONFIG_HOME/wasm-pkg/config.toml | ||
default_registry = "ghcr.io" | ||
|
||
[namespace_registries] | ||
# Instruct wkg to use the OCI protocol to fetch packages with the `foo` namespace from ttl.sh/wasm-components | ||
docs = { registry = "docs-registry", metadata = { preferredProtocol = "oci", "oci" = {registry = "ttl.sh", namespacePrefix = "wasm-components/" } } } | ||
``` | ||
|
||
> Note: the registry name can be referenced in the `package_registry_overrides` section of the `wkg` config to provide overrides for specific packages of a namespace. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. AHA NOW I GET IT! Thank you! |
||
|
||
## Distributing WIT and Components by Package Name with `wkg publish` | ||
|
||
Once you've [configured `wkg`](#wkg-configuration-files) to know where to publish packages to, you can use the `wkg publish` command to publish *components* or *interfaces* to be consumed by others. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It might be worth noting that you'll need to configure credentials for pushing and show an example. Can also just link to wkg docs again if easier! There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We reference that in the configuration section briefly: The configuration file also includes credentials for private registries, or for pushing to registries where you have permission, and other configuration options. See the [`wkg` docs for more configuration options](https://github.com/bytecodealliance/wasm-pkg-tools?tab=readme-ov-file#configuration). I think I'd prefer to leave that to the wkg documentation |
||
|
||
Imagine you have defined the following `adder` world in WIT: | ||
|
||
```wit | ||
package docs:[email protected]; | ||
|
||
interface add { | ||
add: func(a: u32, b: u32) -> u32; | ||
} | ||
|
||
world adder { | ||
export add; | ||
} | ||
``` | ||
|
||
You can publish this *WIT* using `wkg` by wrapping it up as a Wasm component. Yes, you heard that right! We are packaging WIT as Wasm. | ||
|
||
```sh | ||
# Package the contents of add WIT directory as Wasm | ||
wkg wit build --wit-dir tutorial/wit/adder | ||
# Publish the produced component | ||
wkg publish docs:[email protected] | ||
``` | ||
|
||
If you had configured `wkg` as described in the [`wkg` configuration section](#wkg-configuration-files), this would publish the component to `ttl.sh/wasm-components/docs/adder:0.1.0`. This WIT can then be fetched using `wkg get`, specifying the format `wit`: | ||
|
||
```sh | ||
wkg get --format wit docs:[email protected] --output adder.wit | ||
``` | ||
|
||
Instead of publishing the WIT interface, you could publish the built component by running: | ||
|
||
```sh | ||
wkg publish adder.wasm --package docs:[email protected] | ||
``` | ||
|
||
You can then fetch the component by running: | ||
|
||
```sh | ||
wkg get docs:[email protected] --output adder.wasm | ||
``` | ||
|
||
## More Generic Operations with `wkg oci` | ||
|
||
The `wkg oci` subcommand enables pushing/pulling Wasm artifacts to/from any OCI registry. Unlike `wkg publish` and `wkg get`, providing the WIT package is not required. | ||
|
||
To push a component to an OCI registry, use `wkg oci pull`. The example below pushes a component to a GitHub Container Registry. | ||
|
||
```sh | ||
wkg oci push ghcr.io/user/component:0.1.0 component.wasm | ||
``` | ||
|
||
To pull a component, run: | ||
|
||
```sh | ||
wkg oci pull ghcr.io/user/component:0.1.0 -o component.wasm | ||
``` | ||
|
||
## Fetching WIT Package Dependencies using `wkg` | ||
|
||
Sometimes fetching a single package is not sufficient because it depends on other packages. For example, the following world describes a simple Wasm service which requires `wasi:http/proxy`: | ||
|
||
```wit | ||
package foo:wasi-http-service; | ||
|
||
world target-world { | ||
include wasi:http/[email protected]; | ||
} | ||
``` | ||
|
||
You may be tempted to simply get the `wasi:http` package with `wkg get --format wit wasi:[email protected] -o wit/deps/http/`. However, `wasi:http` depends on other WASI packages such as `wasi:clocks` and `wasi:io`. To make sure to fetch a package and all its dependencies, use `wkg wit fetch`, which will read the package containing the world(s) you have defined in the given wit directory (`wit` by default). It will then fetch the | ||
dependencies and write them to the `deps` directory along with a lock file. | ||
|
||
After placing the above file in `./wit`, run the following to fetch the dependencies: | ||
|
||
```sh | ||
wkg wit fetch | ||
itowlson marked this conversation as resolved.
Show resolved
Hide resolved
|
||
``` | ||
|
||
The `./wit` directory will be populated as follows: | ||
```sh | ||
wit | ||
├── deps | ||
│ ├── wasi-cli-0.2.3 | ||
│ │ └── package.wit | ||
│ ├── wasi-clocks-0.2.3 | ||
│ │ └── package.wit | ||
│ ├── wasi-http-0.2.3 | ||
│ │ └── package.wit | ||
│ ├── wasi-io-0.2.3 | ||
│ │ └── package.wit | ||
│ └── wasi-random-0.2.3 | ||
│ └── package.wit | ||
└── world.wit | ||
``` | ||
|
||
Now, you can use the language toolchain of your choice to generate bindings and create your component. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The opening material talked about distributing and fetching components but most of the focus seems to be on WITs. Can we give an example of consuming a library (implementation) package from a registry? Perhaps it would be useful to provide a bit of conceptual framework around "okay things in registries may be interface or implementation and it's all represented as Wasm and it gets distributed and fetched the same way you just need to say if you want the interface or implementation when you pull/get/fetch it" or whatever is, uh, true. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is super helpful and I wonder if we should briefly mention this before we get into
wkg
at all. But in any event good to have here!