| name | c-network |
| description | DNS lookups with doggo and readable HTTP requests with httpie — modern networking tools for the terminal. |
| tags | ["dns","http","networking","api"] |
Networking
doggo (DNS client)
doggo example.com
doggo example.com MX
doggo example.com AAAA
doggo example.com TXT
doggo example.com NS
doggo example.com CNAME
doggo example.com --nameserver 1.1.1.1
doggo example.com --nameserver 8.8.8.8
doggo example.com --class IN --type A --nameserver https://cloudflare-dns.com/dns-query
doggo example.com --json
httpie (HTTP client)
Human-friendly alternative to curl:
http GET api.example.com/users
http POST api.example.com/users name=John email=john@example.com
http GET api.example.com Authorization:"Bearer token123"
http --download https://example.com/file.zip
http --form POST api.example.com file@photo.jpg
http -a user:password GET api.example.com/protected
http --follow GET example.com
http --headers GET example.com
http --verbose GET example.com
Guidelines
- Use
doggo for DNS debugging instead of dig or nslookup
- Use
http (httpie) for API testing instead of curl — output is colorized and formatted
- For POST requests, httpie auto-detects JSON vs form data
key=value sends as JSON string, key:=123 sends as JSON number