Files
vim-ale/go
AJ ONeal 990221454e add fetchers for non-GitHub release sources
New fetcher packages:
- golang: golang.org/dl/?mode=json&include=all
- zigdist: ziglang.org/download/index.json
- flutterdist: Google Storage per-OS release indexes
- iterm2dist: scrapes iterm2.com/downloads.html
- hashicorp: releases.hashicorp.com/{product}/index.json
- juliadist: julialang-s3.julialang.org/bin/versions.json

Each follows the same iter.Seq2 pattern as the existing nodedist/github
fetchers. Added releases.conf files for all six packages and wired them
into cmd/fetchraw.

Fixed latest-version detection for sources that return unordered data
(hashicorp, zigdist, juliadist) by comparing all versions with lexver
instead of taking the first stable one found.
2026-03-09 22:39:16 -06:00
..
2026-03-08 19:38:49 -06:00

title, homepage, tagline
title homepage tagline
Go https://golang.org Go makes it easy to build simple, reliable, and efficient software.

To update or switch versions, run webi go@stable (or @v1.21, @beta, etc).

Files

~/.config/envman/PATH.env
~/.local/opt/go/
~/go/

Cheat Sheet

Go is designed, through and through, to make Software Engineering easy. It's fast, efficient, reliable, and something you can learn in a weekend.

If you subscribe to The Zen of Python, you'll love > Go.

You may also want to install the Go IDE tooling: go-essentials.

Hello World

  1. Make and enter your project directory

    mkdir -p ./hello/cmd/hello
    pushd ./hello/
    
  2. Initialize your go.mod to your git repository url:

    go mod init github.com/example/hello
    
  3. Create a hello.go

    cat << EOF >> ./cmd/hello/hello.go
    package main
    
    import (
      "fmt"
    )
    
    func main () {
      fmt.Println("Hello, World!")
    }
    EOF
    
  4. Format, build, and run your ./hello

    go fmt ./...
    go build -o hello ./cmd/hello/
    ./hello
    

    You should see your output:

    > Hello, World!
    

How to run a Go program as a service

On Linux:

# Install serviceman (compatible with systemd)
webi serviceman
# go into your programs 'opt' directory
pushd ./hello/

# swap 'hello' and './hello' for the name of your project and binary
serviceman add --name 'hello' -- \
    ./hello

# Restart the logging service
sudo systemctl restart systemd-journald