Skip to content

Latest commit

 

History

History
35 lines (25 loc) · 901 Bytes

README.md

File metadata and controls

35 lines (25 loc) · 901 Bytes

gobin

gobin is a package manager for /go/bin

gobin runs go to install, get available versions, get a version from a binary. It does not store anything on disk itself.

For information about go modules, see https://go.dev/ref/mod.

Features

  • List installed packages.
  • Check for updates.
  • Install packages (like go install).
  • Uninstall packages (just remove binaries).
  • Update outdated packages.
  • Reinstall packages which was built with old version of go.
  • JSON format output.

Installation

go install github.com/burik666/gobin@latest

Usage

Use gobin --help for more information.

gobin install golang.org/x/tools/cmd/...
gobin install golang.org/x/tools/cmd/[email protected] -- -ldflags=-s
gobin list goimports
gobin list golang.org/x/tools/cmd/...
gobin upgrade golang.org/x/tools/cmd/...
gobin uninstall golang.org/x/tools/cmd/...

License

GPLv3