A versatile library for building CLI applications in Go
Argparse for golang. Just because flag sucks
Cobra is a development framework for building command-line applications in Go. It organizes application logic into a hierarchical tree structure where each node represents a command, complete with its own flags and execution logic. This structure allows developers to build complex, nested command interfaces that mirror business domains while maintaining a clean separation between command orchestration and underlying business logic. The framework distinguishes itself through its declarative approach to metadata and configuration. It automatically derives help documentation, usage instructions,
docopt-go
Die Hauptfunktionen von docopt/docopt.go sind: Kommandozeilenschnittstellen, Go CLI Frameworks.
Open-Source-Alternativen zu docopt/docopt.go sind unter anderem: jawher/mow.cli — A versatile library for building CLI applications in Go. ukautz/clif — CLIF - Command line interface framework. akamensky/argparse — Argparse for golang. Just because `flag` sucks. alexflint/go-arg. spf13/cobra — Cobra is a development framework for building command-line applications in Go. It organizes application logic into a… urfave/cli — This is a framework for building structured terminal applications in Go. It provides the core components necessary to…