Forrest logo
back to context overview

go-list

List of commands for go-list:

  • go-list:tldr:515cc go-list: List packages in JSON format.
    $ go list -json time net/http
    try on your machine
    explain this command
  • go-list:tldr:72584 go-list: List standard packages.
    $ go list std
    try on your machine
    explain this command
  • go-list:tldr:a3cc8 go-list: List module dependencies and available updates.
    $ go list -m -u all
    try on your machine
    explain this command
  • go-list:tldr:f95e7 go-list: List packages.
    $ go list ./...
    try on your machine
    explain this command
back to context overview