Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,34 @@ The output is a component which may be run using e.g. [`wasmtime`](https://githu

## Installation

### Using Go

Requires Go 1.25.5+

Add the following to your `go.mod` file and run `go mod tidy`:

```
tool github.com/bytecodealliance/componentize-go
```

In the same directory as your `go.mod` file, you can interact with the tool:

```sh
go tool componentize-go --help
```

Alternatively:

```sh
go install github.com/bytecodealliance/componentize-go@latest
```

It should be accessible via PATH:

```sh
componentize-go --help
```

### Download a release

You can download a specific release from the [release page](https://github.com/bytecodealliance/componentize-go/releases).
Expand Down
Loading