nem035 / axios-error-to-http

Coerce a messy axios error to a clean http error

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Axios Error to Http

npm i axios-error-to-http

Handle annoying gigantic axios errors:

const httpError = (error as AxiosError)?.isAxiosError
  ? axiosErrorToHttp(error as AxiosError)
  : error;
console.error(httpError);

Peer dependcies are axios and http-errors.

About

Coerce a messy axios error to a clean http error


Languages

Language:JavaScript 100.0%