logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

List Go Packages - Discover Dependencies | Online Free DevTools by Hexmos

List Go packages and module dependencies with go-list. Find available updates and dependencies for your Go projects. Free online tool, no registration required.

go-list

List packages or modules. More information: https://pkg.go.dev/cmd/go#hdr-List_packages_or_modules.

  • List packages:

go list ./...

  • List standard packages:

go list std

  • List packages in JSON format:

go list -json time net/http

  • List module dependencies and available updates:

go list -m -u all

See Also