showdeps

show Go package dependencies

  • Owner: rogpeppe/showdeps
  • Platform:
  • License:: GNU General Public License v2.0
  • Category::
  • Topic:
  • Like:
    0
      Compare:

Github stars Tracking Chart

Showdeps - an opinionated tool for inspecting Go package dependencies

Showdeps starts where go list -f leaves off. It's useful for exploring
dependency graphs of Go programs.

By default, showdeps just shows the packages imported by the packages
named on the command line. It doesn't show those packages themselves,
it doesn't recursively visit all dependencies, and it doesn't show
dependencies in the standard library.

You can specify additional flags to show all of those things:

The -a flag will show all dependencies recursively. By default
this will include testing dependencies but only those of the packages
specifically mentioned. This keeps the dependency graph from becoming
too unwieldy due the testing dependencies in external repositories that
you really don't care about.

The -stdlib flag will include dependencies from the standard
library. These are excluded by default because dependencies on the
standard library are rarely a problem.

The -T flag causes test dependencies to be omitted. With -T
specified, you'll see the exact dependencies of the package without
pollution from test-related code.

There are other flags that provide more insight into the details of
the dependencies.

The -from flag shows why each dependency is included by printing,
along with each package, the list of packages that depend on it.

The -why flag can be used to explore just why a particular package has
been included in the result. By default, it shows a single dependency chain
(a sequence of package names that import each other) from
the listed packages to any package matched by the =why argument.
If the -a flag is provided, it instead prints all packages
that are part of any of those chains in -from style.

Finally, the -f flag causes all the Go source file names to be printed.
Since this is usually for whole-program greps or analysis, this also
includes the source files in the packages specified on the command line.

Examples:

Print the immediate dependencies of the package
in the current directory:

$ showdeps

Print the import pages of all the packages used directly and indirectly by net/http.

$ showdeps -a -stdlib -T net/http

Show a line count of all the packages underneath
the current directory and their dependencies.

$ showdeps -a -f ./..., xargs cat, wc -l

Find out one reason why net/http indirectly imports crypto/x509/pkix:

$ showdeps -T  -why crypto/x509/pkix net/http
net/http crypto/tls crypto/x509 crypto/x509/pkix

Main metrics

Overview
Name With Ownerrogpeppe/showdeps
Primary LanguageGo
Program languageGo (Language Count: 1)
Platform
License:GNU General Public License v2.0
所有者活动
Created At2014-09-15 13:47:56
Pushed At2018-07-19 11:05:54
Last Commit At2018-07-19 12:05:53
Release Count0
用户参与
Stargazers Count51
Watchers Count5
Fork Count1
Commits Count16
Has Issues Enabled
Issues Count0
Issue Open Count0
Pull Requests Count2
Pull Requests Open Count0
Pull Requests Close Count1
项目设置
Has Wiki Enabled
Is Archived
Is Fork
Is Locked
Is Mirror
Is Private