I built a thing — httpsc (Simple HTTP status codes reference CLI)
How often do you visit a Wikipedia for a definition of a HTTP status code? I don’t know how about you but it happens to me at least once a week. To make it a bit easier I created a httpsc — simple HTTP status codes reference CLI.

httpsc CLI
The httpsc was built using Node.js — presumably majority of my readers already have it installed but if not, give “Install Node.js — installer vs. Homebrew vs. NVM” a quick read. Prerequisites out of the way, lets get into the CLI.
npx httpscto get the whole referencenpx httpsc 4to get a short info about all4xxcodesnpx httpsc 40to get a short info about all40xcodesnpx httpsc 404to get a detailed info about404code
httpsc Node.js API
Do you want to use this info on your project? Here you go.
yarn add httpsc
import httpsc, { getCode } from "httpsc";
httpscto get the whole referencegetCode()to get the info about particular status code (i.e.getCode(404))
Enjoy :*