go-showdeps

command module
v0.0.0-...-c64a791 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Nov 3, 2022 License: MIT Imports: 1 Imported by: 0

README

Contributors Forks Stargazers Issues MIT License


go-showdeps

An interactive terminal UI for navigating your Go project's dependencies.
Explore the docs »

Report Bug · Request Feature

Table of Contents
  1. About The Project
  2. Getting Started
  3. Usage
  4. Roadmap
  5. Contributing
  6. License
  7. Contact

About The Project

go-showdeps is an interactive terminal UI for navigating your Go project's dependencies. It can be configured to highlight and rank packages according to custom rules.

(back to top)

Getting Started

Prerequisites

  • Go 1.16+

Installation

  1. Install using Go
    	go install github.com/grab/go-showdeps@latest
    

(back to top)

Usage

Demo

Demo

Quickstart

Run go-showdeps from the root of your Go project.

Usage of go-showdeps:
  -c string
        The path of the configuration file (shorthand)
  -config-file string
        The path of the configuration file
  -path-prefix string
        The prefix to strip from package names. Requires StripPath
  -strip-path
        If set, will strip PathPrefix from package names

Environment variables:
  CONFIG string

  STRIP_PATH bool

  PATH_PREFIX string

Configuration

Custom rules can be configured by creating a configuration file in the following locations (in order of priority):

  1. A YAML file specified on the command-line via the -c/--config-file flag.
  2. A .go-showdeps.yml file in the current directory.
  3. $HOME/.go-showdeps.yml

Example configuration file:

---
rules:
  - regex: internal/
    label: Internal package
    color: '#aa0000'
    priority: 9
  - regex: ^github
    label: Package from GitHub
    color: '#007700'
    priority: 1

(back to top)

Go Modules

go-showdeps expects to run with Go modules enabled for best results. However, if you experience slowness in large projects it may be possible to speed it up by setting GO111MODULE=off.

(back to top)

Roadmap

See the open issues for a full list of proposed features (and known issues).

(back to top)

Contributing

If you have a suggestion that would make this project better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement".

(back to top)

License

Distributed under the MIT License. See LICENSE for more information.

(back to top)

Contact

Project Link: https://github.com/grab/go-showdeps

(back to top)

Documentation

Overview

Package main is the go-showdeps command.

Directories

Path Synopsis
Package cmd is the entrypoint to the go-deps command.
Package cmd is the entrypoint to the go-deps command.
Package config holds the configuration structs for go-showdeps.
Package config holds the configuration structs for go-showdeps.
Package deps contains the logic for the go-showdeps command.
Package deps contains the logic for the go-showdeps command.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL