An open API service indexing awesome lists of open source software.

https://github.com/burik666/gobin

gobin is a package manager for /go/bin
https://github.com/burik666/gobin

go gobin golang

Last synced: 11 months ago
JSON representation

gobin is a package manager for /go/bin

Awesome Lists containing this project

README

          

# 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/...@v0.1.7 -- -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