httpref alternatives and similar packages
Based on the "DevOps Tools" category.
Alternatively, view httpref alternatives based on common mentions on social networks and blogs.
-
Gitea
Git with a cup of tea! Painless self-hosted all-in-one software development service, including Git hosting, code review, team collaboration, package registry and CI/CD -
Moby
The Moby Project - a collaborative project for the container ecosystem to assemble container-based systems -
Packer
Packer is a tool for creating identical machine images for multiple platforms from a single source configuration. -
kubeshark
eBPF-powered network observability for Kubernetes. Indexes L4/L7 traffic with full K8s context, decrypts TLS without keys. Queryable by AI agents via MCP and humans via dashboard. -
dasel
Unified querying, transformation, and modification of JSON, TOML, YAML, XML, INI, HCL, KDL and CSV. -
Mizu
DISCONTINUED. The API traffic viewer for Kubernetes providing deep visibility into all API traffic and payloads going in, out and across containers and pods inside a Kubernetes cluster. Think TCPDump and Wireshark re-invented for Kubernetes [Moved to: https://github.com/kubeshark/kubeshark] -
Pomerium
Pomerium is an identity and context-aware reverse proxy for zero-trust access to web applications and services. -
StatusOK
Monitor your Website and APIs from your Computer. Get Notified through Slack, E-mail when your server is down or response time is more than expected. -
s3gof3r
Fast, concurrent, streaming access to Amazon S3, including gof3r, a CLI. http://godoc.org/github.com/rlmcpherson/s3gof3r -
uTask
µTask is an automation engine that models and executes business processes declared in yaml. ✏️📋
SaaSHub - Software Alternatives and Reviews
Do you think we are missing an alternative of httpref or a related project?
Popular Comparisons
README
HTTP Reference
This is a handy little helper that puts HTTP reference at your fingertips, when you're on the CLI, when you need it.
But why?
Because I can never remember what the bloody http status codes mean, or the details of methods, or whatever. It's annoying!
Why not just wikipedia?
Well it boils down to 2 things:
- If I use the browser then it means that I have to use the mouse, or a track pad or something.
- I'm a little bored on a Friday night. There's some rubbish film on. Quite frankly I'm a little bored.
- If I make it good enough then people will give me stars. This, as everyone knows, is a proxy for love and it will make up for many deficiencies in my life.
- My attention to detail is incredible. I therefore invite you to sponsor me using the links at the top of the page. :)
Before we get any further, I'm really interested in how you feel about this tool. Please take the time to fill in this short survey: https://forms.gle/mHh6idwwUvdfYZM67
Installation
$ go get github.com/dnnrly/httpref/cmd/httpref
Usage
Filter by Title
$ httpref 1
1xx Informational response
100 Continue
101 Switching
102 Processing
103 Early hints
$ httpref 200
200 - OK
The HTTP 200 OK success status response code indicates that the request has succeeded. A 200 response is cacheable by default.
The meaning of a success depends on the HTTP request method:
GET: The resource has been fetched and is transmitted in the message body.
HEAD: The entity headers are in the message body.
POST: The resource describing the result of the action is transmitted in the message body.
TRACE: The message body contains the request message as received by the server.
The successful result of a PUT or a DELETE is often not a 200 OK but a 204 No Content (or a 201 Created when the resource is uploaded for the first time).
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/200
Full-text Search
The --search option accepts a term to full-text search. This option is available for header, method, and status references.
$ httpref --search clear
Clear-Site-Data
Clears browsing data (e.g. cookies, storage, cache) associated with the requesting
website.
205
Reset Content
431
Request Header Fields Too Large
Important make targets
deps- downloads all of the deps you need to build, test, and releasebuild- builds your applicationtest- runs unit testsci-test- run tests for CI validationacceptance-test- run the acceptance testslint- run lintingupdate- update Go dependenciesclean- clean project dependenciesclean-deps- remove all of the build dependencies too