1
0
mirror of https://github.com/jbranchaud/til synced 2026-01-03 07:08:01 +00:00
Files
til/unix/curling-for-headers.md
2016-09-29 23:19:21 -05:00

482 B

Curling For Headers

If you want to inspect the headers of a response from some endpoint, look no further than a quick curl command. By including the -I flag, curl will return just the headers.

For example, if you are developing a web app that is being locally served at localhost:3000 and you'd like to see what the headers look like for a particular URL, you might try something like the following command:

$ curl -I localhost:3000/posts

h/t Dillon Hafer