https://github.com/yolo-pkgs/gore
"npm list/update -g" for golang
https://github.com/yolo-pkgs/gore
go golang golang-package
Last synced: 5 months ago
JSON representation
"npm list/update -g" for golang
- Host: GitHub
- URL: https://github.com/yolo-pkgs/gore
- Owner: yolo-pkgs
- License: mit
- Created: 2023-12-29T20:37:38.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2025-03-19T17:27:21.000Z (over 1 year ago)
- Last Synced: 2025-03-19T18:32:34.480Z (over 1 year ago)
- Topics: go, golang, golang-package
- Language: Go
- Homepage:
- Size: 146 KB
- Stars: 13
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# gore

[](https://goreportcard.com/report/github.com/yolo-pkgs/gore)
[](https://github.com/yolo-pkgs/gore)
[](https://opensource.org/licenses/MIT)
"npm list/update -g" for Go
List and update user binaries installed through "go install". Works with public, private and development (v0.0.0-...) packages.
## Installation
Requires Go 1.20+
```bash
go install github.com/yolo-pkgs/gore@latest
```
## How to use
```bash
# List all user binaries (and available updates) installed with 'go install'
gore list
# Pass --dev (or -d) to also check dev packages like v0.0.0-...
gore list -d
# Pass --group (or -g) to group packages by domain
gore list -g
# Pass --extra (or -e) to print extra info
gore list -e
# Pass --simple (or -s) to print without table
gore list -s
# Update all user binaries
gore update
# Scan repositories of dev packages first and install them with precision instead of @latest.
gore update -d
# Dump installation commands
gore dump
gore dump --latest
```