go-outdated alternatives and similar packages
Based on the "Code Analysis" category.
Alternatively, view go-outdated alternatives based on common mentions on social networks and blogs.
-
Go Metalinter
Metalinter is a tool to automatically apply all static analysis tool and report their output in normalized form. -
go-cleanarch
Clean architecture validator for go, like a The Dependency Rule and interaction between packages in your Go projects. -
go-mod-outdated
Find outdated dependencies of your Go projects. go-mod-outdated provides a table view of the go list -u -m -json all command which lists all dependencies of a Go project and their available minor and patch updates. It also provides a way to filter indirect dependencies and dependencies without updates. -
goreturns
A gofmt/goimports-like tool for Go programmers that fills in Go return statements with zero values to match the func return types -
tickgit
Manage your repository's TODOs, tickets and checklists as config in your codebase. -
GoCover.io
GoCover.io offers the code coverage of any golang package as a service. -
gostatus
A command line tool that shows the status of Go repositories. -
apicompat
apicompat checks recent changes to a Go project for backwards incompatible changes -
ChainJacking
Find which of your direct GitHub dependencies is susceptible to RepoJacking attacks -
usestdlibvars
A linter that detect the possibility to use variables/constants from the Go standard library. -
tarp
tarp finds functions and methods without direct unit tests in Go source code. -
gosimple
gosimple is a linter for Go source code that specialises on simplifying code. -
staticcheck
staticcheck is go vet on steroids, applying a ton of static analysis checks you might be used to from tools like ReSharper for C#. -
unused
unused checks Go code for unused constants, variables, functions and types. -
blanket
blanket is a tool that helps you catch functions which don't have direct unit tests in your Go packages. -
Golint online
Lints online Go source files on GitHub, Bitbucket and Google Project Hosting using the golint package.
Clean code begins in your IDE with SonarLint
Do you think we are missing an alternative of go-outdated or a related project?
README
This project is not supported anymore
Go-outdated is minimalistic library that helps to find outdated packages hosted on github.com in your golang project.
Installation
Install the library with:
go get -u github.com/firstrow/go-outdated
Usage
Note: To use this library without limitations, you should create GitHub access token.
cd $GOPATH/path/to/your/project
go-outdated
GitHub access token
GitHub API has requests limit. You should create access token and pass it to go-outdated
go-outdated -token=YOUR_PRIVATE_GITHUB_TOKEN
Re-entering API token
Yes, typing each time access token in command-line is not easy. Use git config to re-use token:
git config --global github.token YOUR_PRIVATE_GITHUB_TOKEN
go-outdated # token will be taken from git config
Github doc: https://github.com/blog/180-local-github-config
Aliases
If you for some reason do not want to configure you local git config, You can create command-line alias in your .zshrc
or .bashrc
files. Example:
alias go-outdated='go-outdated -token=YOUR_PRIVATE_GITHUB_TOKEN'
Todo
- Cache
- Refactor
Links
How-to create API tokens: https://help.github.com/articles/creating-an-access-token-for-command-line-use/
Alternatives:
https://github.com/shurcooL/Go-Package-Store
https://github.com/divan/gofresh
License:
The MIT License (MIT) http://opensource.org/licenses/MIT
*Note that all licence references and agreements mentioned in the go-outdated README section above
are relevant to that project's source code only.