Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/shurcooL/Go-Package-Store
An app that displays updates for the Go packages in your GOPATH.
https://github.com/shurcooL/Go-Package-Store
go
Last synced: 29 days ago
JSON representation
An app that displays updates for the Go packages in your GOPATH.
- Host: GitHub
- URL: https://github.com/shurcooL/Go-Package-Store
- Owner: shurcooL
- License: mit
- Created: 2014-01-24T06:02:09.000Z (almost 11 years ago)
- Default Branch: main
- Last Pushed: 2023-11-26T05:18:51.000Z (about 1 year ago)
- Last Synced: 2024-11-11T09:14:43.303Z (about 1 month ago)
- Topics: go
- Language: Go
- Homepage:
- Size: 14 MB
- Stars: 899
- Watchers: 24
- Forks: 29
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-golang-repositories - Go-Package-Store
- awesome-go - Go-Package-Store - An app that displays updates for the Go packages in your GOPATH. - ★ 863 (Software Packages)
- awesome-go-extra - Go-Package-Store - 01-24T06:02:09Z|2020-03-07T22:35:33Z| (Go Tools / Other Software)
README
Go Package Store
================[![Go Reference](https://pkg.go.dev/badge/github.com/shurcooL/Go-Package-Store.svg)](https://pkg.go.dev/github.com/shurcooL/Go-Package-Store)
Go Package Store displays updates for the Go packages in your GOPATH.
![](Screenshot.png)
Installation
------------```sh
go install github.com/shurcooL/Go-Package-Store/cmd/Go-Package-Store@latest
```Usage
-----```
Usage: Go-Package-Store [flags]
[newline separated packages] | Go-Package-Store -stdin [flags]
-dep string
Determine the list of Go packages from the specified Gopkg.toml file.
-git-subrepo string
Look for Go packages vendored using git-subrepo in the specified vendor directory.
-godeps string
Read the list of Go packages from the specified Godeps.json file.
-http string
Listen for HTTP connections on this address. (default "localhost:7043")
-stdin
Read the list of newline separated Go packages from stdin.GitHub Access Token:
To display updates for private repositories on GitHub, or when
you've exceeded the unauthenticated rate limit, you can provide
a GitHub access token for Go Package Store to use via the
GO_PACKAGE_STORE_GITHUB_TOKEN environment variable.Examples:
# Check for updates for all Go packages in GOPATH.
Go-Package-Store# Show updates for all golang.org/x/... packages.
go list golang.org/x/... | Go-Package-Store -stdin# Show updates for all dependencies within Gopkg.toml constraints.
Go-Package-Store -dep=/path/to/repo/Gopkg.toml# Show updates for all Go packages vendored using git-subrepo
# in the specified vendor directory.
Go-Package-Store -git-subrepo=/path/to/repo/vendor
```Development
-----------This package relies on `go generate` directives to process and statically embed assets. For development only, you may need extra dependencies. You can build and run the package in development mode, where all assets are always read and processed from disk:
```sh
go build -tags=dev github.com/shurcooL/Go-Package-Store/cmd/Go-Package-Store
```When you're done with development, you should run `go generate` before committing:
```sh
go generate github.com/shurcooL/Go-Package-Store/...
```Alternatives
------------- [GoFresh](https://github.com/divan/gofresh) - Console tool for checking and updating package dependencies (imports).
License
-------- [MIT License](LICENSE)