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
go-cleanarch was created to validate Clean Architecture rules, like a The Dependency Rule and interaction between packages in your Go projects. -
GoPlantUML
Library and CLI that generates text plantump class diagram containing information about structures and interfaces with the relationship among them. -
tickgit
CLI and go package for surfacing code comment TODOs (in any language) and applying a git blameto identify the author. -
go-checkstyle
checkstyle is a style check tool like java checkstyle. This tool inspired by java checkstyle, golint. The style refered to some points in Go Code Review Comments. -
GolangCI
GolangCI is an automated Golang code review service for GitHub pull requests. Service is open source and it's free for open source projects. -
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#. -
Golint online
Lints online Go source files on GitHub, Bitbucket and Google Project Hosting using the golint package.
Get performance insights in less than 4 minutes
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.