Story Details

  • argp: GNU-style command line argument parser for Go

    Posted: 2025-03-23 12:45:21

    argp is a Go library providing a GNU-style command-line argument parser. It supports features like short and long options, flags, subcommands, required arguments, default values, and generating help text automatically. The library aims for flexibility and correctness while striving for good performance and minimal dependencies. It emphasizes handling POSIX-style argument conventions and provides a simple, declarative API for defining command-line interfaces within Go applications.

    Summary of Comments ( 18 )
    https://news.ycombinator.com/item?id=43452525

    Hacker News users discussed argp's performance, ease of use, and its similarity to the C library it emulates. Several commenters appreciated the library's speed and small size, finding it a preferable alternative to more complex Go flag parsing libraries like pflag. However, some debated the value of mimicking the GNU style in Go, questioning its ergonomic fit. One user highlighted potential issues with error handling and suggested improvements. Others expressed concerns about compatibility and long-term maintenance. The general sentiment leaned towards cautious optimism, acknowledging argp's strengths while also raising valid concerns.