Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
30 Days Of Javascript | 36,311 | 2 days ago | 1 | January 25, 2022 | 251 | JavaScript | ||||
30 days of JavaScript programming challenge is a step-by-step guide to learn JavaScript programming language in 30 days. This challenge may take more than 100 days, please just follow your own pace. These videos may help too: https://www.youtube.com/channel/UC7PNRuno1rzYPb1xLa4yktw | ||||||||||
Httpie | 27,856 | 1,645 | 42 | 12 days ago | 55 | May 06, 2022 | 146 | bsd-3-clause | Python | |
🥧 HTTPie for Terminal — modern, user-friendly command-line HTTP client for the API era. JSON support, colors, sessions, downloads, plugins & more. | ||||||||||
Cli | 20,226 | 3,070 | 3,594 | 12 hours ago | 137 | September 11, 2022 | 44 | mit | Go | |
A simple, fast, and fun package for building command line apps in Go | ||||||||||
Fx | 16,283 | 11 | 16 | a month ago | 47 | September 15, 2020 | 22 | mit | Go | |
Terminal JSON viewer | ||||||||||
Http Prompt | 8,717 | 7 | 1 | a month ago | 24 | March 05, 2021 | 53 | mit | Python | |
An interactive command-line HTTP and API testing client built on top of HTTPie featuring autocomplete, syntax highlighting, and more. https://twitter.com/httpie | ||||||||||
Yq | 8,695 | 43 | 6 days ago | 10 | February 06, 2020 | 74 | mit | Go | ||
yq is a portable command-line YAML, JSON, XML, CSV, TOML and properties processor | ||||||||||
Miller | 7,763 | 14 hours ago | 64 | March 31, 2022 | 93 | other | Go | |||
Miller is like awk, sed, cut, join, and sort for name-indexed data such as CSV, TSV, and tabular JSON | ||||||||||
Fq | 7,549 | 2 days ago | 96 | August 25, 2022 | 40 | other | Go | |||
jq for binary formats - tool, language and decoders for working with binary and text formats | ||||||||||
Structured Text Tools | 6,672 | a month ago | 15 | |||||||
A list of command line tools for manipulating structured text data | ||||||||||
Visidata | 6,597 | 5 | 5 | 6 hours ago | 48 | December 16, 2021 | 84 | gpl-3.0 | Python | |
A terminal spreadsheet multitool for discovering and arranging data |
cli is a simple, fast, and fun package for building command line apps in Go. The goal is to enable developers to write fast and distributable command line applications in an expressive way.
Usage documentation exists for each major version. Don't know what version you're on? You're probably using the version from the master
branch, which is currently v2
.
v2
- ./docs/v2/manual.md
v1
- ./docs/v1/manual.md
Guides for migrating to newer versions:
v1-to-v2
- ./docs/migrate-v1-to-v2.md
Using this package requires a working Go environment. See the install instructions for Go.
Go Modules are required when using this package. See the go blog guide on using Go Modules.
v2
releases$ go get github.com/urfave/cli/v2
...
import (
"github.com/urfave/cli/v2" // imports as package "cli"
)
...
v1
releases$ go get github.com/urfave/cli
...
import (
"github.com/urfave/cli"
)
...
Make sure your PATH
includes the $GOPATH/bin
directory so your commands can
be easily used:
export PATH=$PATH:$GOPATH/bin
cli is tested against multiple versions of Go on Linux, and against the latest released version of Go on OS X and Windows. This project uses Github Actions for builds. To see our currently supported go versions and platforms, look at the ./.github/workflows/cli.yml.