Clone this repo:
  1. 57c9a58 Fix staticcheck warning for io/ioutil deprecation by Marc-Antoine Ruel · 7 months ago main
  2. 6d5562a Update github actions by Marc-Antoine Ruel · 7 months ago
  3. e92030a go.mod: update to 1.21 by Marc-Antoine Ruel · 7 months ago
  4. 7642663 Allow GetFlags to return nil. (#9) by Robert Iannucci · 2 years, 10 months ago v1.1.1
  5. 76e231e github actions: update to go1.17 by Marc-Antoine Ruel · 2 years, 10 months ago

subcommands golang library

This package permits a Go application to implement subcommands support similar to what is supported by the ‘go’ tool.

The library is designed so that the test cases can run concurrently. Using global flags variables is discouraged to keep your program testable concurrently.

The intended command is found via heuristic search;

  • exact match
  • unique prefix, e.g. lo will run longcommand as long as there's no command with the same prefix.
  • case insensitivity; for those weird enough to use Upper Cased Commands.
  • levenshtein distance; where longcmmand or longcmomand will properly trigger longcommand.

PkgGoDev Coverage Status

Examples

  • See sample-simple for a barebone sample skeleton usable as-is.
  • See sample-complex for a complex sample using advanced features.
  • See module subcommands/subcommandstest for tools to help testing an application using subcommands. One of the main benefit is t.Parallel() just works, because subcommands help wrapping global variables.