Popularity
4.9
Growing
Activity
5.6
-
177
4
18
Programming language: Go
License: MIT License
Tags:
Command Line
Standard CLI
Latest version: v1.0.4
clîr alternatives and similar packages
Based on the "Standard CLI" category.
Alternatively, view clîr alternatives based on common mentions on social networks and blogs.
-
survey
DISCONTINUED. A golang library for building interactive and accessible prompts with full support for windows and posix terminals. -
The Platinum Searcher
A code search tool similar to ack and the_silver_searcher(ag). It supports multi platforms and multi encodings. -
flaggy
Idiomatic Go input parsing with subcommands, positional values, and flags at any position. No required project or package layout and no external dependencies. -
flag
Flag is a simple but powerful command line option parsing library for Go support infinite level subcommand -
go-getoptions
Fully featured Go (golang) command line option parser with built-in auto-completion support. -
command-chain
A go library for easy configure and run command chains. Such like pipelining in unix shells. -
Go-Console
GoConsole: the golang component that eases the creation of beautiful command line interfaces.
InfluxDB - Purpose built for real-time analytics at any scale.
InfluxDB Platform is powered by columnar analytics, optimized for cost-efficient storage, and built with open data standards.
Promo
www.influxdata.com
Do you think we are missing an alternative of clîr or a related project?
Popular Comparisons
README
A Simple and Clear CLI library. Dependency free.
Features
- Nested Subcommands
- Uses the standard library
flag
package - Auto-generated help
- Custom banners
- Hidden Subcommands
- Default Subcommand
- Dependency free
Example
package main
import (
"fmt"
"log"
"github.com/leaanthony/clir"
)
func main() {
// Create new cli
cli := clir.NewCli("Flags", "A simple example", "v0.0.1")
// Name
name := "Anonymous"
cli.StringFlag("name", "Your name", &name)
// Define action for the command
cli.Action(func() error {
fmt.Printf("Hello %s!\n", name)
return nil
})
if err := cli.Run(); err != nil {
fmt.Printf("Error encountered: %v\n", err)
}
}
Generated Help
$ flags --help
Flags v0.0.1 - A simple example
Flags:
-help
Get help on the 'flags' command.
-name string
Your name
Documentation
The main documentation may be found here.
License Status
*Note that all licence references and agreements mentioned in the clîr README section above
are relevant to that project's source code only.