Skip to content

Readme updates #805

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

Merged
merged 2 commits into from
May 8, 2025
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
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

This an implementation of [Jsonnet](http://jsonnet.org/) in pure Go. It is a feature complete, production-ready implementation. It is compatible with the original [Jsonnet C++ implementation](https://github.com/google/jsonnet). Bindings to C and Python are available (but not battle-tested yet).

This code is known to work on Go 1.12 and above. We recommend always using the newest stable release of Go.
This code is known to work on Go 1.23 and above. We recommend always using the newest stable release of Go.

## Installation instructions

Expand Down Expand Up @@ -83,7 +83,7 @@ func main() {
}
```

## Build instructions (go 1.12+)
## Build instructions (go 1.23+)

```bash
git clone [email protected]:google/go-jsonnet.git
Expand Down Expand Up @@ -119,6 +119,8 @@ Additionally if any files were moved around, see the section [Keeping the Bazel

## Building libjsonnet.wasm

The [WASM](https://webassembly.org/) build can be used to embed go-jsonnet for use (client side) in the web browser. This is used for the live code snippets on https://jsonnet.org/

```bash
GOOS=js GOARCH=wasm go build -o libjsonnet.wasm ./cmd/wasm
```
Expand Down