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 | 39,282 | 6 days ago | 1 | January 19, 2022 | 324 | 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 | ||||||||||
Cli | 30,275 | 1,645 | 58 | 3 days ago | 56 | May 19, 2023 | 168 | bsd-3-clause | Python | |
🥧 HTTPie CLI — modern, user-friendly command-line HTTP client for the API era. JSON support, colors, sessions, downloads, plugins & more. | ||||||||||
Cli | 20,994 | 3,070 | 5,037 | 12 hours ago | 191 | June 21, 2023 | 44 | mit | Go | |
A simple, fast, and fun package for building command line apps in Go | ||||||||||
Fx | 17,717 | 11 | 21 | 20 days ago | 61 | November 10, 2023 | 5 | mit | Go | |
Terminal JSON viewer & processor | ||||||||||
Yq | 9,839 | 77 | a day ago | 131 | November 23, 2023 | 122 | mit | Go | ||
yq is a portable command-line YAML, JSON, XML, CSV, TOML and properties processor | ||||||||||
Fq | 9,010 | 2 days ago | 106 | November 25, 2023 | 45 | other | Go | |||
jq for binary formats - tool, language and decoders for working with binary and text formats | ||||||||||
Http Prompt | 8,811 | 7 | 1 | 7 months 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 | ||||||||||
Miller | 8,253 | 3 days ago | 65 | November 26, 2022 | 97 | other | Go | |||
Miller is like awk, sed, cut, join, and sort for name-indexed data such as CSV, TSV, and tabular JSON | ||||||||||
Hurl | 7,259 | 3 | 10 hours ago | 14 | September 22, 2023 | 127 | apache-2.0 | Rust | ||
Hurl, run and test HTTP requests with plain text. | ||||||||||
Visidata | 6,967 | 5 | 9 | 11 hours ago | 52 | July 17, 2023 | 14 | gpl-3.0 | Python | |
A terminal spreadsheet multitool for discovering and arranging data |
HTTPie (pronounced aitch-tee-tee-pie) is a command-line HTTP client.
Its goal is to make CLI interaction with web services as human-friendly as possible.
HTTPie is designed for testing, debugging, and generally interacting with APIs & HTTP servers.
The http
& https
commands allow for creating and sending arbitrary HTTP requests.
They use simple and natural syntax and provide formatted and colorized output.
Please note we recently accidentally made this repo private for a moment, and GitHub deleted our community that took a decade to build. Read the full story here: https://httpie.io/blog/stardust
wget
-like downloadsHello World:
https httpie.io/hello
Custom HTTP method, HTTP headers and JSON data:
http PUT pie.dev/put X-API-Token:123 name=John
Build and print a request without sending it using offline mode:
http --offline pie.dev/post hello=offline
Use GitHub API to post a comment on an Issue with authentication:
http -a USERNAME POST https://api.github.com/repos/httpie/cli/issues/83/comments body='HTTPie is awesome! ❤️'
httpie
tag.Have a look through existing Issues and Pull Requests that you could help with. If you'd like to request a feature or report a bug, please create a GitHub Issue using one of the templates provided.