{"id":21995415,"url":"https://github.com/nemanjam/axios-timeout-error-demo","last_synced_at":"2026-04-20T13:09:00.406Z","repository":{"id":260509805,"uuid":"881500359","full_name":"nemanjam/axios-timeout-error-demo","owner":"nemanjam","description":null,"archived":false,"fork":false,"pushed_at":"2024-10-31T17:54:28.000Z","size":61,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-23T04:23:25.702Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/nemanjam.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-10-31T17:40:15.000Z","updated_at":"2024-10-31T17:54:33.000Z","dependencies_parsed_at":"2024-10-31T18:41:18.147Z","dependency_job_id":null,"html_url":"https://github.com/nemanjam/axios-timeout-error-demo","commit_stats":null,"previous_names":["nemanjam/axios-timeout-error-demo"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/nemanjam/axios-timeout-error-demo","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nemanjam%2Faxios-timeout-error-demo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nemanjam%2Faxios-timeout-error-demo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nemanjam%2Faxios-timeout-error-demo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nemanjam%2Faxios-timeout-error-demo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nemanjam","download_url":"https://codeload.github.com/nemanjam/axios-timeout-error-demo/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nemanjam%2Faxios-timeout-error-demo/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32048480,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-20T11:35:06.609Z","status":"ssl_error","status_checked_at":"2026-04-20T11:34:48.899Z","response_time":94,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-29T21:15:25.218Z","updated_at":"2026-04-20T13:09:00.383Z","avatar_url":"https://github.com/nemanjam.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# axios-timeout-error-demo\n\n## Usage\n\n```bash\n# install packages\nyarn install\n\n# run demo\nyarn dev\n```\n\nYou will get this error:\n\n```\n$ ~/Desktop/axios-timeout-error-demo$ yarn dev\n\nyarn run v1.22.22\n$ ts-node ./src/main.ts\nStringified error:  {\n  \"message\": \"\",\n  \"name\": \"AggregateError\",\n  \"stack\": \"AggregateError\\n    at Function.AxiosError.from (/home/username/Desktop/axios-timeout-error-demo/node_modules/axios/lib/core/AxiosError.js:92:14)\\n    at RedirectableRequest.handleRequestError (/home/username/Desktop/axios-timeout-error-demo/node_modules/axios/lib/adapters/http.js:620:25)\\n    at RedirectableRequest.emit (node:events:531:35)\\n    at RedirectableRequest.emit (node:domain:488:12)\\n    at ClientRequest.eventHandlers.\u003ccomputed\u003e (/home/username/Desktop/axios-timeout-error-demo/node_modules/follow-redirects/index.js:49:24)\\n    at ClientRequest.emit (node:events:519:28)\\n    at ClientRequest.emit (node:domain:488:12)\\n    at emitErrorEvent (node:_http_client:103:11)\\n    at TLSSocket.socketErrorListener (node:_http_client:506:5)\\n    at TLSSocket.emit (node:events:519:28)\\n    at Axios.request (/home/username/Desktop/axios-timeout-error-demo/node_modules/axios/lib/core/Axios.js:45:41)\\n    at processTicksAndRejections (node:internal/process/task_queues:105:5)\",\n  \"config\": {\n    \"transitional\": {\n      \"silentJSONParsing\": true,\n      \"forcedJSONParsing\": true,\n      \"clarifyTimeoutError\": false\n    },\n    \"adapter\": [\n      \"xhr\",\n      \"http\",\n      \"fetch\"\n    ],\n\n\n    // ...\n\n      \"maxCachedSessions\": 100,\n      \"_sessionCache\": {\n        \"map\": {},\n        \"list\": []\n      }\n    },\n    \"method\": \"get\",\n    \"url\": \"https://news.ycombinator.com/item?id=41966114\"\n  },\n  \"code\": \"ETIMEDOUT\"\n}\nAxios no response error. Request: [object Object] undefined\n/home/username/Desktop/axios-timeout-error-demo/src/axios-instance.ts:52\n  return new Error(message);\n         ^\nError: Axios no response error. Request: [object Object]\n    at handleAxiosError (/home/username/Desktop/axios-timeout-error-demo/src/axios-instance.ts:52:10)\n    at /home/username/Desktop/axios-timeout-error-demo/src/axios-demo.ts:28:29\n    at Generator.throw (\u003canonymous\u003e)\n    at rejected (/home/username/Desktop/axios-timeout-error-demo/src/axios-demo.ts:6:65)\n    at processTicksAndRejections (node:internal/process/task_queues:105:5)\nerror Command failed with exit code 1.\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnemanjam%2Faxios-timeout-error-demo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnemanjam%2Faxios-timeout-error-demo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnemanjam%2Faxios-timeout-error-demo/lists"}